输入 git 的提交消息后该怎么办?
输入 git commit -a 后,会弹出一个文本编辑器,然后我输入我的评论。输入评论后,我必须按哪些按钮才能使其进入实际提交的下一阶段?
我在 Windows 上使用默认设置的 mysysGit。
After I type in git commit -a
a text editor pops up and I type in my comment. What buttons do I have to press after typing in the comment, to get it to move to the next stage of actually committing?
I'm using mysysGit on Windows with the default setup.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
try this:
保存文件并退出编辑器。
Save the file and exit your editor.
取决于您使用的文本编辑器。 Git 选择环境变量“EDITOR”中指定的编辑器。在 Linux 系统上,这通常是 Vi 或 Nano。找出它是什么,然后参考相应编辑器的文档。
Depends on the text editor you are using. Git chooses the editor specified in the environment variable "EDITOR." On Linux systems this is usually either Vi or Nano. Figure out which it is and then refer to the documentation for the appropriate editor.
git commit
总是需要注释。你可以给一个这样的git commit -m“我的评论”
。如果您未在此处发表评论,则会弹出一个文本编辑器,强制您发表评论。有时,您实际上可能需要编辑器放入提交消息。当您想要提供提交的更详细描述以及摘要时,这通常是必需的(编写摘要,然后是一个空行,然后是描述)。
这是 git help commit 的摘录。
编辑:
在文本编辑器中输入文本后,只需保存并关闭它即可。如果您尝试在不提供任何注释的情况下执行此操作,则提交将会失败。
A
git commit
always requires a comment. You can give one like thisgit commit -m "my comment"
. If you do not provide a comment here, then a text editor pops up to force you to give a comment.Sometimes, you may actually need the editor to put in the commit message. This generally is required when you want to give a more detailed description of the commit along with the summary (write the summary followed by a blank line followed by the description).
This is an extract from git help commit.
EDIT:
And after you type text in your text editor, just save and close it. If you try to do it without providing any comment, the commit will fail.