git, how to I go back to origin master after pulling a branch
Posted
by
fishtoprecords
on Stack Overflow
See other posts from Stack Overflow
or by fishtoprecords
Published on 2012-03-20T23:01:00Z
Indexed on
2012/03/20
23:29 UTC
Read the original article
Hit count: 242
This has to be a FAQ, but I can't find it googling.
Another person created a branch, commit'd to it, and pushed it to github using git push origin newbranch
I successfully pulled it down using
git pull origin newbranch
Now, I want to go back to the origin master version. Nothing I do seems to cause the files in the origin master to replace those in the newbranch.
git checkout master
git checkout origin master
git pull
git pull origin HEAD
etc
git pull origin master
returns:
* branch master -> FETCH_HEAD
Already up-to-date.
This can't be hard, but I sure can't figure it out.
'git branch' returns
* master
and 'git branch -r' return
origin/HEAD origin/experimental origin/master
© Stack Overflow or respective owner