通常修改一个文件 并且将文件提交到本地分支的命令是:
git add .
git commit -m 'update'
简化一下:
git commit -am 'update'
【am】 就是 【add modify】 两个命令的合并
今天写demo的时候 用的是简化的命令 但是提交之后提示:
原来 git commit -am 'update' 只能提交已经tracked即追踪过的文件,如果是新文件,必须使用分开的命令。