1.查看状态(工作区--stage:红色 | stage--master:绿色,Untracked意思文件还未被添加至stage):
git status
2.新建一个文件夹---》第一次修改----》git add----》第二次修改---》git commit---》git status---》
第二次修改还在工作区,缓存区没有修改了---》git diff HEAD----》工作区和master比较,第二次修改没提交
3.丢弃公共区的修改时
git checkout -- file
网友评论