when commit vi on git
어느 순간 Commit을 하려 했으나, 안되는 증상이 발생!
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
찾아 보니 이렇다. 무슨 문제로 인한 vi editor 버그라는데 갑자기 생긴 이유는 모르겠다.
그런데, 해결방법은 참 쉽다.
git config --global core.editor `vim`
위 명령어처럼 git 전역 설정에 vim
editor 설정을 등록하는 방법이 있다.
맥에서는 아래의 방법을 써도 된다.
git config --global core.editor /usr/bin/vim
이상 seungdols 올림.