我为 Windows 安装了标准的 git。然而,当我打开 git gui 时,我在屏幕上看到的是这些
和 git bash 一样。
Welcome to Git (version 1.9.4-preview20140815)
Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.
sh.exe": /dev/null: No such file or directory
sh.exe": /dev/null: No such file or directory
sh.exe": /dev/null: No such file or directory
sh.exe": /dev/null: No such file or directory
sh.exe": /dev/null: No such file or directory
sh.exe": /dev/null: No such file or directory
John@KYEL-PC ~
$ cd projects/
sh.exe": /dev/null: No such file or directory
我尝试卸载并重新安装,但结果仍然如此
答案1
显然你使用的 Git 版本非常旧。那是一个错误已于 2014 年 2 月 20 日修复:
第 75 行:
newFilePath = '/dev/null'; // do something for Windows!
您可以在 Windows 中使用“NUL”路径,例如:
newFilePath = 'NUL';
删除此旧版本并尝试安装这个!