在不打开编辑器的情况下提交
当你运行 git commit
时,Git 通常会打开一个编辑器(比如 vim
或 emacs
)。传递 -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 提交消息 。