有人知道如何从终端将代码推送到Github吗?
我做git add
。但是当我执行git commit
时,它显示出很多错误,有人可以向我展示正确的方法吗?
答案 0 :(得分:0)
只有git commit --allow-empty-message
会提交,而无需输入消息。
但这不是一个好习惯。
git commit -m "<msg>"
将使用给定的<msg>
作为提交消息。
如“ Add line break to 'git commit -m' from the command line中所见,多个-m
表示提交消息的多行。
git commit -m "My head line" -m "My content line."