Tuesday, March 27, 2012

git:: how to undo changes to a single file

undo changes in a single file, using git

To get rid of the stupid changes you have made in a single file, without effecting important changes in other files use,
git checkout filename
Yes, that is the same command used to switch between branches. If the branch name is same the filename, do this
git checkout --filename
Note:
git checkout --hard
will reset all the files. Use that when you are certain about that.
Related Posts Plugin for WordPress, Blogger...