项目协作时git管理代码的命令
提交上传代码的命令
git add -A
代码存入缓存区
git commit -m "注释"
提交代码到本地仓库
git commit --amend
提交代码,且本次提交的代码和上次提交
2020-09-23