I have a git repository, After the last commit, I modified a bunch of file. but I want to undo the changes to one of these file, as in reset it to the same version of itself that's in the repository, but I want to undo the change to that file alone! nothing else with it. How do I do that? assuming it's possible of course ..
|
5
|
|
|
|
|
|
You can do it without the You can also check out a particular version of a file:
|
|||
|
|
If you want to just undo the previous commit's changes to that one file, you can try this:
This will checkout the file as it was before the last commit. If you want to go a few more commits back, use the |
||
|
|
|
|
Just use
This will replace filename with the latest version from the current branch. WARNING: your changes will be discarded -- no backup is kept. |
||
|
|
|
|
I used this today because I realized that my favicon had been overwritten a few commits ago when I upgrated to drupal 6.10, so I had to get it back. Here is what I did:
|
||
|
|
