67

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.

ubuntico
  • 2,872

3 Answers3

74

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
alper
  • 224
38

Typing it without the dash/hyphen should work:

git gui

instead of git-gui.

Zanna
  • 72,312
augre
  • 575
6

In terminal type :

git gui citool

Make 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 --amend

Automatically enter the Amend Last Commit mode of the interface.

git gui citool --nocommit

Behave 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

nux
  • 39,152