Git WebUI alternatives and similar software solutions
Based on the "Project Management" category.
Alternatively, view Git WebUI alternatives based on common mentions on social networks and blogs.
-
Gitea
Git with a cup of tea! Painless self-hosted all-in-one software development service, includes Git hosting, code review, team collaboration, package registry and CI/CD -
Phabricator
Effective June 1, 2021: Phabricator is no longer actively maintained. -
gitbucket
A Git platform powered by Scala with easy installation, high extensibility & GitHub API compatibility -
OpenProject
OpenProject is the leading open source project management software. -
Gitolite
Hosting git repositories -- Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features. -
Redmine
Mirror of redmine code source - Official Subversion repository is at https://svn.redmine.org/redmine - contact: @vividtone or maeda (at) farend (dot) jp -
Taiga
Agile project management platform. Built on top of Django and AngularJS -
goodwork
Self hosted project management and collaboration tool powered by TALL stack -
Bonobo Git Server
Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info. -
Leantime
Leantime is a lean project management system for non-project managers. Designed to help you manage your projects from ideation to delivery. -
UVDesk
UVdesk Opensource Community Helpdesk Project built for all to make a Full Ticketing Support System along with many more other features. -
ZenTao
Zentao is a lifecycle management for agile projects and open source! -
Tuleap
Tuleap is a Free & Open Source Suite to improve management of software developments and collaboration. With a single web-based solution, project managers, developers & quality managers can easily build, deploy software projects. -
The Bug Genie
The Bug Genie is a friendly project management and issue tracking tool -
Klaus
docker run klaus / pip install klaus — the first Git web viewer that Just Works™. -
Trac
Trac is an enhanced wiki and issue tracking system for software development projects (mirror) -
Phproject
A high performance full-featured project management system -
Titra
titra - modern open source project time tracking for freelancers and small teams -
Lazylead
Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows automating (without admin access) daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar. -
Kallithea
Source code management system that supports two leading version control systems, Mercurial and Git, with a web interface. -
ProjeQtOr
A complete, mature, multi-user project management system with extensive functionality for all phases of a project. -
sorcia
Sorcia is a minimalist web frontend for Git repositories with fine-grained user access controls, multiple themes to choose based on your taste and many more. -
Pagure
A lightweight, powerful, and flexible git-centric forge with features laying the foundation for federated and decentralized development. -
RhodeCode
RhodeCode is an open source platform for software development teams. It unifies and simplifies repository management for Git, Subversion, and Mercurial. -
SCM Manager
The easiest way to share and manage your Git, Mercurial and Subversion repositories over http.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Git WebUI or a related project?
README
Git WebUI
This git extension is a standalone web based user interface for git repositories.
It comes with history and tree browsing. You may also use it to commit as it comes with an UI to review local changes and the ability to stage / unstage code.
Moreover as git-webui is a web server, your repository is accessible to other people on the same network. They can clone or pull your code using the same URL.
It has very few dependencies, you probably already have them on your Mac / Linux : git, python, and a web browser.
Installation
Automatic (Do you trust me ?)
The following command will install git-webui in $HOME/.git-webui
and add a
webui
alias to your global .gitconfig
file.
Note for Windows users: These install scripts work for you too. Run them from your Git-Bash shell. You need to install Python first.
Using curl (Mac OS X & Windows):
curl https://raw.githubusercontent.com/alberthier/git-webui/master/install/installer.sh | bash
Using wget (Linux):
wget -O - https://raw.githubusercontent.com/alberthier/git-webui/master/install/installer.sh | bash
Upon installation git-webui will update itself automatically every couple of weeks.
You can deactivate auto-update by removing the autoupdate = true
line from the
webui
section of your global .gitconfig
file.
Manual
Simply clone the repository and install the alias
git clone https://github.com/alberthier/git-webui.git
git config --global alias.webui \!$PWD/git-webui/release/libexec/git-core/git-webui
If you want to allow auto-update:
git config --global webui.autoupdate true
Usage
Starting
First cd to any of your project versioned with git
cd <my-local-git-clone>
git webui
This will start an embedded HTTP server and open your default browser with the GUI.
History Viewing
The toolbar on the left shows your branches and tags. The log of the currently selected one is displayed.
When selecting a revision the diff of this specific commit is displayed in the right panel.
On top of the right panel, you can choose 'Tree' to display the versioned content at the specific revision selected in the left panel. You can browse through directories and display file contents.
Remote access
Other people on your network have read-only access to your repository: they may access to the web interface (without 'Workspace'), clone or pull from your repository. All this through the same url:
Clone:
$ git clone http://<ip_of_the_computer_running_webui>:8000/ repo_name
Pull:
$ git pull http://<ip_of_the_computer_running_webui>:8000/
Commit
Commits can only be made from localhost.
- Working copy lists the modified files (compared to the staging area) in your working directory
- Message lets you enter a commit message
- Staging area lists the modified files (compared to HEAD) in your staging area. These are the changes that will be committed
The diff view lets you review the differences of the selected file. You can select code in more fine grained way:
- If the displayed diff is from the working copy, you may stage or cancel the selected lines.
- If the displayed diff is from the staging area, you may unstage the selected lines.
Dependencies
Runtime
- git (of course :) )
- python 2.7+ or python 3.0+ (Generally already installed on your Mac / Linux)
- An up-to-date modern browser
Development
- Runtime dependencies and ...
- node.js
- grunt-cli
Uninstallation
Automatic
Using curl (Mac OS X & Windows):
curl https://raw.githubusercontent.com/alberthier/git-webui/master/install/uninstaller.sh | bash
Using wget (Linux):
wget -O - https://raw.githubusercontent.com/alberthier/git-webui/master/install/uninstaller.sh | bash
Manual
rm -rf <git-webui-clone-path>
git config --global --unset-all alias.webui
git config --global --remove-section webui
Contributing
You can clone the source code of git-webui on GitHub
After executing grunt
git-webui is available in the dist
folder.
Please don't commit any content to the release
folder. This is for end-users release versions, not for work-in-progress versions
Packaging
If you want to build a DEB, RPM or Homebrew package for git-webui, you only need the content of the release
folder.
Installing git-webui globally on the system is nothing else than
cp -rf release/* /usr
Limitations
- If you have no web browser installed at all (headless server), you should start git webui with the
--no-browser
option. Otherwise git-webui may freeze searching for a browser.
Author
License
This software is licensed under the Apache 2.0 license
*Note that all licence references and agreements mentioned in the Git WebUI README section above
are relevant to that project's source code only.