Git 无需打开编辑器即可提交
示例
运行时,Git通常会打开一个编辑器(如vim或emacs)gitcommit。传递-m选项以从命令行指定消息:
git commit -m "Commit message here"
您的提交消息可以跨越多行:
git commit -m "Commit 'subject line' message here More detailed description follows here (after a blank line)."
另外,您可以传递多个-m参数:
git commit -m "Commit summary" -m "More detailed description follows here"
请参阅如何编写Git提交消息。
UdacityGit提交消息样式指南