文件没有在git的commtting,并给出了一个错误信息
我是新来的git,并坚持在犯下一个文件,而无法输入任何内容,以下是消息来了:文件没有在git的commtting,并给出了一个错误信息
# Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:[enter image description here][1]
# modified: file_1.txt
回答:
我认为这实际上比Git更像是一个VIM问题。
按下SHIFT +我进入插入模式。
然后输入您的提交信息。为了节省您的工作并退出该界面,键入:
ESC
退出编辑模式,依次为:
:WQ
这应该完成提交,并返回到你的Git bash的提示。正如@olibiaz提到的,您也可以尝试使用:
git commit -m 'your commit message here'
在这种情况下,Git不会启动VIM编辑器。
回答:
按i
进行插入。一旦完成编辑信息,您可以按esc
- >:wq
- >enter
保存并退出。
以上是 文件没有在git的commtting,并给出了一个错误信息 的全部内容, 来源链接: utcz.com/qa/263962.html