I have a repository on Github, aav1
On my laptop I have two branches, one called master and one called vs12up The master branch was when the software was Visual Studio 2008, vs12up is converted to Visual Studio 2012.
On my laptop everything seems fine and I pushed the new branch to github, appears correct.
On my desktop I tried to pull the remote branch:
git pull origin vs12up
It wrote the changes to my master branch on the desktop, git log shows the commits made on the vs12up branch, but git branch only shows master, which is the current branch.
How can I revert the changes to the master branch and pull the vs12up branch on my desktop to match the repository on my laptop?