git撤销修改分两种情况
1.还没有 git add到stage区 直接命令git checkout -- file 撤销自己的修改
2.已经git add到stage区 先git reset HEAD <file>..." to unstage 再git checkout -- file撤销修改
git撤销修改分两种情况
1.还没有 git add到stage区 直接命令git checkout -- file 撤销自己的修改
2.已经git add到stage区 先git reset HEAD <file>..." to unstage 再git checkout -- file撤销修改