windows下配置git默认编辑器


在windows上使用git的时候,在配置全局编辑器的时候遇到一点问题,现将解决办法如下,
在.gitconfig中做如下配置:

[user]
	name = coolcao
	email = [email protected]
[core]
	editor = "c:/Program Files (x86)/Vim/vim74/gvim.exe"

可是在使用的时候却提示如下错误:

error: cannot spawn gvim: No such file or directory
error: unable to start editor 'gvim'
Please supply the message using either -m or -F option.

上网查得知,原来git config貌似移出了一层引号,因此加上便可,如下即可:

[user]
	name = coolcao
	email = [email protected]
[core]
	editor = "\"c:/Program Files (x86)/Vim/vim74/gvim.exe\""

当然,如果你的终端配置了vim的环境变量,完全可以 editor=vim   ,直接在终端里面调用vim即可,只是Windows的终端字体太难看了,没法更改(或者我不会,也不愿改了),不如使用图形化的gvim看起来舒服。

你可能感兴趣的:(git)