最近我在終端安裝了bash-it
。現在,當我嘗試執行git commit
終端顯示我這個錯誤:Git-commit無法打開vim
/usr/bin/mate -w: /usr/bin/mate: No such file or directory error: cannot run /usr/bin/mate -w: No such file or directory error: There was a problem with the editor '/usr/bin/mate -w'. Please supply the message using either -m or -F option.
之前bash-it
,commit命令正確打開VIM。 當然,我試圖將git中的core.editor
更改爲「vim」,但它無論如何都不起作用。
你能幫我解決這個問題嗎?我非常喜歡vim,它非常容易和快速......我不想使用TextMate來編輯提交消息。
PS:我正在使用Mac OSX
檢查'EDITOR'或'VISUAL'環境變量。其中一個可能指向'/ usr/bin/mate'。 – Paul 2014-11-14 13:21:51
謝謝保羅,你說得對,我不得不環境變量指向: ''#設置我的編輯器和git編輯器 export EDITOR =「/ usr/bin/mate」export GIT_EDITOR ='/ usr/bin/mate -v'''' 我編輯了我的.bash_profile並刪除了那些,設置vim: '''設置我的編輯器和git編輯器 export EDITOR =「/ usr/bin/vim」 export GIT_EDITOR ='/ usr/bin/vim'''' – imran3 2014-11-14 13:37:42