git 의 기본 commit editor 변경하기
msysgit 은 기본 에디터로 notepad++ 이 뜨게 되어 있다. vim 으로 바꾸기 위해서는 다음 절차 수행
다음 git config 명령어 수행
git config --global core.editor C:/util/vim/vim74/gvim.exe
또는.gitconfig 에 다음 내용 추가
[core] editor = C:/util/vim/vim74/gvim.exe
msysgit 은 기본 에디터로 notepad++ 이 뜨게 되어 있다. vim 으로 바꾸기 위해서는 다음 절차 수행
다음 git config 명령어 수행
git config --global core.editor C:/util/vim/vim74/gvim.exe
또는.gitconfig 에 다음 내용 추가
[core] editor = C:/util/vim/vim74/gvim.exe