红联Linux门户
Linux帮助

修改git commit默认触发的编辑器

发布时间:2016-07-21 09:45:36来源:linux网站作者:0xAC
使用git commit会自动启动编辑器编辑本次提交的comment,git默认配置是GNU nano,但是很多人不是很熟悉(我就是),其实这个是可以自行配置的。
 
编辑制定代码库的.git/config文件,一般长这样:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
editor = vim
[remote "origin"]
url = https://github.com/Og192/Cpp
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
 
在[core]标签下添加 “editor = vim" 即可。(如上面.git/config文件的第6行增加了editor = vim。)
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22574.html