git commit command with core.editor equals atom

前端 未结 1 1920
刺人心
刺人心 2021-01-24 18:54

I have a problem with atom editor. I set atom as the core.editor by command:

git config --global core.editor atom

But when I try to commit the

相关标签:
1条回答
  • 2021-01-24 19:10

    try with:

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

    the atom --wait flag wait for window to be closed before returning.

    0 讨论(0)
提交回复
热议问题