I've installed git-gui tool via sudo apt-get install git-gui. But how do I start it? Trying with search or git-gui command did not find and UI tool for Git.
3 Answers
Type git citool to start git-gui.
If it gives the error: git: 'citool' is not a git command, just install the following package: git-gui
sudo apt-get install git-gui 6 Typing it without the dash/hyphen should work:
git guiinstead of git-gui.
In terminal type :
git gui citoolMake one commit and return to the shell when it is complete. This command returns a non-zero exit code if the window was closed in any way other than by making a commit.
git gui citool --amendAutomatically enter the Amend Last Commit mode of the interface.
git gui citool --nocommitBehave as normal citool, but instead of making a commit simply terminate with a zero exit code. It still checks that the index does not contain any unmerged entries, so you can use it as a GUI version of git-mergetool.
Reference Site
2