我已经通过安装了git-gui
工具sudo apt-get install git-gui
。但是我该如何启动它?尝试使用搜索或git-gui
命令未找到 Git 的 UI 工具。
答案1
输入git citool
以启动 git-gui。
如果出现错误:git: 'citool' is not a git command
,只需安装以下包:git-gui
sudo apt-get install git-gui
答案2
不带破折号/连字符输入应该有效:
git gui
代替git-gui
。
答案3
在终端类型:
git gui citool
进行一次提交并在完成后返回 shell。如果窗口以除提交之外的任何方式关闭,此命令将返回非零退出代码。
git gui citool --amend
自动进入界面的Amend Last Commit模式。
git gui citool --nocommit
行为与普通 citool 相同,但不会进行提交,而是以零退出代码终止。它仍会检查索引是否包含任何未合并的条目,因此您可以将其用作 git-mergetool 的 GUI 版本。
参考地点