I was working on a local branch and I needed to pull down one of the branches from origin so I issued the following command:
git pull origin design
When I did that, that branch ended up being merged into my current local branch which is not what I wanted at all. So I need to do 2 things:
- How do I revert this merge back out of my local branch?
- How do I pull a branch from origin without it doing this merge?