我正在使用Ubuntu 11.10,并且刚刚使用以下命令安装了git

sudo apt-get install

基本的git命令似乎有效。 (我创建了一个存储库并向其中添加了目录结构。)但不是git gui或gitk。这就是我得到的
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$

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

这些命令是否可以在Ubuntu上运行,是否需要单独安装?

谢谢,
彼得

最佳答案

sudo apt-get install git-gui gitk

关于git - 安装git后不存在git gui和gitk,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14673257/

10-13 05:52