[Git] 設定 editor

有時候單 commit 修改幅度不小,或是需要做長一點的說明時,直接在 command line 打會有點不舒服

個人會習慣叫出 editor 來編輯

1
git commit -e

今天在新環境時剛好需要用到 commit -e,指令下去之後噴了兩行 error

1
2
3
[Calos.Calos-PC] git commit -e
error: cannot run vi: No such file or directory
error: There was a problem with the editor 'vi'.

core.editor 沒設定,在使用到需要利用 editor 進行的指令時就會出現這種錯誤

core.editor 設為 vim

1
git config --global core.editor vim

搞定

Licensed under CC BY-NC-SA 3.0 TW
comments powered by Disqus