Aborting commit due to empty commit message

后端 未结 20 2035
[愿得一人]
[愿得一人] 2020-12-04 09:45

As a newbie git user, when I try to commit my work with

git commit -a -v

and I enter a commit message in my editor, I close the file, and g

20条回答
  •  佛祖请我去吃肉
    2020-12-04 10:11

    For Visual studio Code

    git config --global core.editor "code -w"
    

    For atom

    git config --global core.editor "atom -w"
    

    For sublime

    git config --global core.editor "subl -w"
    

提交回复
热议问题