在 msysgit 上使用 gitk
我正在尝试在 mysysgit 上使用 gitk。我没有使用 Cygwin 或 MinGW 来运行 mysysgit,只是在 Windows 上使用直接的 DOS 命令提示符。
gitk 文件位于 bin/ 文件夹中,但它不是可执行文件,因此当我输入 gitk 时,我得到:
‘gitk’不被识别为内部或外部命令,可操作 程序或批处理文件。
I'm trying to use the gitk on mysysgit. I'm not using Cygwin or MinGW to run mysysgit, just a straight up DOS command prompt on Windows.
The gitk file is in the bin/ folder, but it's not an executable, so when I type gitk
I get:
'gitk' is not recognized as an internal or external command, operable
program or batch file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
cmd/
文件夹中的gitk.cmd
Use
gitk.cmd
from thecmd/
folder如果您已安装
Git for windows
并且在 Windows 上运行cmder
并且无法启动gitk
,则:编辑系统环境变量
。C:\Program Files (x86)\Git\cmd
(或任何正确的路径),并用分号gitk
,现在编写gitk.cmd
完成。
注意:上述指令可能对
mingw
或cygwin
或bash
等 shell 之外的命令行工具有效If you've installed
Git for windows
and you're runningcmder
on windows and unable to launchgitk
, then:Edit system environmental variables
there.C:\Program Files (x86)\Git\cmd
(or whatever the right path be) at the end, and terminate the line with a semicolongitk
, write nowgitk.cmd
Done.
Note: The above instruction may stand valid for command line tools other than
mingw
orcygwin
orbash
like shells