I have a bit of a predicament. Basically I have a local "master" git repository. Every few hours, I 'git push' my changes to a server from which I then pull to my client machines. Well, being the genius I am, I accidentally used GITK to roll back my local "master" repository one version too far.

What are the steps to pull the last committed version back from the server and still have my local version behave "masterfully"?

Best.

EDIT: Excellent answers all. Much appreciated!

link|improve this question

Could just pull from the server to one of the clients, then copy over the pulled result and re-commit it to the master? – Amber Nov 29 '09 at 3:41
If those answers are really excellent, why didn't you vote them up? – innaM Nov 29 '09 at 18:21
feedback

2 Answers

up vote 3 down vote accepted

Assuming your local master is still clean, i.e., no local changes, but some number of commits behind master on the server repo, you need only pull from it:

git pull server master

In the above command, server is the name of the remote that other clients pull from (or you could use its URL instead).

link|improve this answer
feedback

First, stash your existing changes:

git stash

Then, run (considering that the remote from which you want to update your local repository to be named origin):

git remote update origin
git reset --hard origin/master

Apply the stashed changes:

git stash pop
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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