git commit -am和git -m有什么区别

时间:2017-09-04 10:55:29

标签: git

有人可以说明git commit -am和某些使用git commit -m之间的区别,两者都有效,但我不知道有什么区别。

2 个答案:

答案 0 :(得分:2)

git commit -am 

的组合
// add all files staged for the commit
git commit -a   

// commit with the message
git commit -m ""

答案 1 :(得分:0)

Git commit -am在提交之前添加所有文件的阶段。