修改git commit默认触发的编辑器
生活随笔
收集整理的這篇文章主要介紹了
修改git commit默认触发的编辑器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用git commit會自動啟動編輯器編輯本次提交的comment,git默認配置是GNU nano,但是很多人不是很熟悉(我就是),其實這個是可以自行配置的。
編輯制定代碼庫的.git/config文件,一般長這樣:
[core]repositoryformatversion = 0filemode = truebare = falselogallrefupdates = trueeditor = vim [remote "origin"]url = https://github.com/Og192/Cppfetch = +refs/heads/*:refs/remotes/origin/* [branch "master"]remote = originmerge = refs/heads/master
在[core]標簽下添加 “editor = vim" 即可。
轉載于:https://www.cnblogs.com/zhuangliu/p/5443457.html
總結
以上是生活随笔為你收集整理的修改git commit默认触发的编辑器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 七种寻址方式(32位地址的寻址方式)
- 下一篇: linux 多线程安全定时器