When I ran git gui, I got this:
$ git gui
git: 'gui' is not a git command. See 'git --help'.
Did you mean one of these?
grep
init
pull
push
But I ran other git commands fine, including gitk. How can I fix this?
Thanks.
|
When I ran
But I ran other git commands fine, including Thanks. |
|||
|
|
|
Edit your git config to an add an entry for gui in the alias section nano ~/.gitconfig
|
|||
|
This post: http://www.cmsimike.com/blog/2012/07/30/git-gui-and-osx-mountain-lion/ saves me. Edit
Now the new command is EDIT (28 Jan 2013) I have found a better answer to why Apple did indeed remove the 'git gui' command. I decided to just homebrew git instead of relying on the XCode command line tools.
Then I edited the /etc/paths file to have the /usr/local/bin directory come before the /usr/bin directory, because that wasn't right either. Then exited the terminal window and restarted, and now I get:
and the git gui command works again. |
|||||||||
|
|
You might need to install/upgrade separately the git-gui package after installing Mountain Lion. From the comments, it seems a git-gui package isn't yet available for Mountain Lion.
|
|||||||||||||
|
|
I have the same issue. Git-gui appears still installed for me (/usr/local/git/libexec/git-core/git-gui is my location) but it doesn't just work without specifying the full path. This indicates a path issue, but I've not looked into it much further. edit Try adding /usr/local/git/libexec/git-core to the beginning of your PATH variable. Looks like all the git binaries are there so that should work. |
|||
|
|
|
While I am not sure how to open git gui from the terminal in Mountain Lion it is possible to use it using OpenInGitGUI which opens git gui from Finder. The download and instructions are available here. This may not be quite as convenient as typing 'git gui' in the terminal but it is pretty close. Basically all you need to do is type 'open .' to open the current directory in Finder and then click the Git button to open up git gui. |
|||
|
|
|
Adding to the path worked for me. I just added this line to my ~/.profile and git gui is alive once again. &(%ing mountain lion. export PATH=PATH:/usr/local/git/libexec/git-core |
|||
|
|