I am using git, but have alot to learn. I wanted to save some changes to a file (but not commit) and go to a different branch, have a look at some code there then go back to what I was working on. That's all. So I did
> git stash > git checkout > vi .... > git stash apply stash@{0} and found myself facing an error message
Auto-merging schematic.f CONFLICT (content): Merge conflict in schematic.f I obviously didn't realize how stash apply was going to work. And now I'm stuck. Nothing I can think of doing will get me out of my current branch and back to the one I was working in. I keep getting this same error message over and over. How do I get out of this? Thanks.