Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git gui and gitk not present after installing git

I am using Ubuntu 11.10 and have just installed git using

sudo apt-get install  

The basic git commands seem to work. (I have created a repository and added a directory structure to it.) But not git gui or gitk. This is what I get

peter@peter-Inspiron-620:/var/www$ sudo git gui  git: 'gui' is not a git command. See 'git --help'.   Did you mean one of these? grep init pull push  peter@peter-Inspiron-620:/var/www$  

For gitk

peter@peter-Inspiron-620:/var/www$ sudo gitk sudo: gitk: command not found peter@peter-Inspiron-620:/var/www$  

Do those commands run on Ubuntu and do I need to install them separately?

Thanks, Peter.

like image 997
OtagoHarbour Avatar asked Feb 03 '13 13:02

OtagoHarbour


People also ask

Is gitk part of git?

Gitk is a graphical repository browser. It was the first of its kind. It can be thought of as a GUI wrapper for git log . It is useful for exploring and visualizing the history of a repository.

Where is git GUI on Mac?

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.


1 Answers

sudo apt-get install git-gui gitk 
like image 94
Fred Foo Avatar answered Sep 19 '22 01:09

Fred Foo