git(osx)上的一個git commit無法正確提交的問題

weixin_33896726發表於2015-11-09

我發現在我修改我自己的檔案之後企圖使用git commit編輯更加詳細的爭對這次提交的資訊的時候

我mac上的vi編輯器貌似 出現了問題 大概報這個錯。

error: There was a problem with the editor 'vim'.
Please supply the message using either -m or -F option.

我有點疑惑,按道理來說儲存之後 就已經自動提交了,而不是像這樣被報錯阻止了。

 

後來在 Google Group: vim_mac 這個帖子中找到了解決的辦法,就是使用完整的 Vim 路徑—— /usr/bin/vim :

$ git config --global core.editor /usr/bin/vim

至於為什麼會這個樣子我也不是太清楚呢。。。

相關文章