If I make changes to the working tree and have not yet committed, and I would like to revert the changes I have made, is there a difference between
git reset --hard HEAD
and
git checkout .
?
|
|
when used with a refspec:
|
||||
|
|
|
These answers are good. I'd like to add that if you have deleted files, which are staged but not yet commited, then a git checkout . alone will not bring the deleted files back into the workspace. A git reset --hard will. |
|||
|
|