.gitconfig:我可以在core.editor值中使用%ProgramFiles(x86)%吗?

时间:2015-07-02 13:45:33

标签: git mingw

git version 2.4.5.windows.1
MINGW64
Windows 7 x64

我尝试通过三种变体指向编辑器。第一:

git config --global core.editor "\"C:\\Program Files (x86)\\Notepad++\\notepad++.exe\""

在这种情况下

git commit

工作正常(记事本++已打开),但我想使用%ProgramFiles(x86)%变量,因为我有Windows的漫游配置文件,而其他计算机可以有其他%SystemDrive%值,而不是C:

第二个变种:

git config --global core.editor "\"%ProgramFiles(x86)%\\Notepad++\\notepad++.exe\""

第三种变体:

git config --global core.editor "\"$ProgramFiles(x86)\\Notepad++\\notepad++.exe\""

但对于这两种情况

git commit

不起作用(notepad ++未打开)。我该怎么办?

1 个答案:

答案 0 :(得分:1)

最简单的方法是在Windows Path字符串中包含notepad ++路径。然后你可以说

git config --global core.editor notepad++