I'm having a problem trying to revert a file to a previous commit, I know I can use git checkout to revert a single file but the problem is I have changes in that file I'd like to keep so I was wondering how to do some sort of "merge" between a previous commit and the current HEAD for a single file? I tried using git reset sha-of-my-commit path/to/my/file but it puts the previous version in the staging area while keeping the latest version on my working directory not sure how to merge both files after it.

What I did for now was just git diff ..sha-of-my-commit path/to/my/file and just copy/pasted the missing lines but I believe there must be a better way to do this right?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Assuming you mean the changes are in your work tree (not committed):

git stash
git checkout previous-commit path/to/file
git stash pop

If you had committed some changes, then you can still do it, with a little more work. Suppose your history looks like this:

- x - A - x - x - x - B - x - x (HEAD)

where you want the version at A, plus the changes from B on. Then do this:

git stash
git checkout B path/to/file
git stash
git checkout A path/to/file
git stash pop
git stash pop

Note that any stash application, since it's a mergey operation, could result in merge conflicts; you should of course resolve those before moving on!

link|improve this answer
Thanks! I completely forgot about git stash – javiervd Feb 3 at 23:04
feedback

I think what you need to do is to point the origin HEAD to a previous point, fetch that for your branch and re-base your branch. You should check that it's in the proper place with 'git status'(?? I think..) then standard git add, git commit, git push when you are ready to push to origin.

I think the link here should give you a pretty good lay down of how it all works with git.. The thing to remember with git is that you have full copies of the entire project history on your machine so you need to be sure that your branch master is also pointed in the proper place.

http://progit.org/book/ch3-5.html

Check that out for sure, a big help (and other links from that site if that doesn't answer your question).

Cheers sir/mam!

link|improve this answer
This doesn't answer the question at all. – Jefromi Feb 3 at 15:52
woops I put in the wrong link.. my bad: progit.org/book/ch3-2.html this should give you the laydown for branching n merging. thx for that catch Jeremy – doddy Feb 6 at 18:49
My name isn't Jeremy, and your answer still doesn't answer the question at all. The two paragraphs before the link are not really anything to do with the question, and neither of those chapters of Pro Git has anything to do with it either. If you do want to improve your answer, you can edit it (there's a link at the bottom). – Jefromi Feb 6 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.