How can I commit files with git?

前端 未结 9 1737
慢半拍i
慢半拍i 2020-12-07 12:21

None of the tutorials will help!
They all do that thing where they just assume I know what to do..

Currently, my terminal window starts with..

#          


        
9条回答
  •  悲哀的现实
    2020-12-07 12:51

    I don't know your system environment, but it seems, that you have typed:

    git commit
    

    And your default editor has been launched. In the worst case scenario (for you) it could have been vim :)

    If you don't know how to quit vim, use :q.

    If you have further problems, you could use

    git commit -m 'Type your commit message here'
    

提交回复
热议问题