Sometimes, esp. when I'm the only one working on a remote repository, I like rewriting the history with git rebase -i and git push origin master -f.

How do I do a forced git pull origin master without a merge? I tried it with the -f option, but that didn't work. I just want to rewrite the history of my local git repo to match that of the remote (origin).

link|improve this question

63% accept rate
feedback

1 Answer

git fetch
git reset --hard origin/master
link|improve this answer
3  
After git fetch, of course. – whitequark Aug 1 '11 at 12:22
@whitequark thanks! added to answer. – MattDiPasquale Aug 5 '11 at 18:11
feedback

Your Answer

 
or
required, but never shown

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