Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
警告:前面的菜鸟问题!
我正在使用 Heroku,并且在提交时忘记关闭引号:
localhost: app myMac$ git commit -m "testing >
如您所见,"在测试结束时缺少最后一个。现在我得到了这个>标志,但我不确定如何摆脱它?这一定是一件微不足道的事情,但我就是无法掌握它!
"
>
只需添加"并按回车键。如果要修复提交消息以删除新行,请运行:
git commit --amend -m "Replacement commit"
这会将最后一条提交消息更改为新消息。
您的 shell 知道缺少". 你可以继续输入你的信息,最后输入最后一个",它应该需要。
如果这失败了,总是git commit --amend可以选择纠正出错的地方。
git commit --amend