가끔가다가 맥에서 vi로 로그를 써서 Git을 이용해 커밋을 할 때, 아래와 같은 에러를 볼 때가 있다.
error: There was a problem with the editor ‘vi’.
Please supply the message using either -m or -F option.
열심히 써놓은 로그가 다 날라가서 매우 짜증나는데, 구글신님을 통해 해결책 발견!
git config –global core.editor /usr/bin/vim
위 명령어로 에디터를 절대경로로 등록해준다! 끝!
- Reference
- http://tooky.co.uk/there-was-a-problem-with-the-editor-vi-git-on-mac-os-x/