输入 git 的提交消息后该怎么办?

发布于 2024-10-18 10:00:02 字数 115 浏览 3 评论 0原文

输入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

深白境迁sunset 2024-10-25 10:00:02

试试这个:

git add file-name  
git commit -m "here goes my awesome commit message"  
git push  

try this:

git add file-name  
git commit -m "here goes my awesome commit message"  
git push  
伴我心暖 2024-10-25 10:00:02

保存文件并退出编辑器。

Save the file and exit your editor.

━╋う一瞬間旳綻放 2024-10-25 10:00:02

取决于您使用的文本编辑器。 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.

星軌x 2024-10-25 10:00:02

git commit 总是需要注释。你可以给一个这样的
git commit -m“我的评论”。如果您未在此处发表评论,则会弹出一个文本编辑器,强制您发表评论。

有时,您实际上可能需要编辑器放入提交消息。当您想要提供提交的更详细描述以及摘要时,这通常是必需的(编写摘要,然后是一个空行,然后是描述)。

这是 git help commit 的摘录。

虽然不是必需的,但最好用一个短行(少于 50 个字符)来总结更改,然后是一个空行,然后是更全面的描述,以开始提交消息。例如,将提交转换为电子邮件的工具使用主题:行上的第一行和正文中的提交的其余部分。

编辑:

在文本编辑器中输入文本后,只需保存并关闭它即可。如果您尝试在不提供任何注释的情况下执行此操作,则提交将会失败。

A git commit always requires a comment. You can give one like this
git 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.

Though not required, it's a good idea to begin the commit message with a single short (less than 50 character) line summarizing the change, followed by a blank line and then a more thorough description. Tools that turn commits into email, for example, use the first line on the Subject: line and the rest of the commit in the body.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文