git commit -am '本次提交描述'与 git commit -m '本次提交描述'
1我们平时使用git上传远程仓库的时候基本也就三个步骤
git add . |
git commit -m '本次提交描述' |
git push |
命令:git commit –m “本次提交描述”
该命令会将git add .存入暂存区修改内容提交至本地仓库中,若文件未添加至暂存区,则提交时不会提交任何修改。
2.使用 git commit -am '本次提交描述'
简介这条命令可以简化上面的基本三步骤
使用如下
git commit -am '本次提交描述'
git push
通俗的将就是合并了
git add . |
git commit -m '本次提交描述' |
这两个步骤
补充:看我师傅敲代码的时候使用&&符号联合使用:
一行搞定
git commit -am '提交的信息' && git push