3

我安装了适用于 Windows 的 Git。当我右键单击一个项目并选择Git History我得到 Gitk 窗口时,但每次我这样做时,我都需要设置视图以查看所有分支。即使我编辑视图并将其设置为Remember,我仍然没有在后续访问 Gitk 时获得所有分支。

或者,我可以打开 Bash 窗口并输入gitk --all相同的结果。

两者都很不方便,我想将 rght click 和 select Git Historyto show 设为默认行为gitk --all

如何实现?

谢谢。

4

2 回答 2

0

修改该上下文菜单条目的注册表以添加参数“--all”

于 2012-07-09T09:22:57.783 回答
0

这对我有用:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\*\shell\Open with &gitk --all\command]
@="C:\\Users\\rofro\\scoop\\shims\\gitk.exe --all \"%1\""

[HKEY_CURRENT_USER\Software\Classes\directory\Background\shell\Open with &gitk --all\command]
@="C:\\Users\\rofro\\scoop\\shims\\gitk.exe --all \"%V\""
于 2021-04-25T20:25:42.240 回答