I'm having an interesting issue with merging. I'm not exactly sure how to explain it, so I hope this graph will give a more clear idea:
Basically, the branch in purple USED to be the master branch, but then I needed to revert back to a previous commit to make different changes. When I wanted to do this, I switched the master branch using the instructions here, but as you can see from the graph, this results in an "empty" merge of the original master to the new master (in teal).
Now, now I actually want to merge the purple commits back into master, both of which sprung from the same original commit. I made some more changes to the purple commit before trying to merge back to master (as shown in the 2nd most recent commit). However, when I try to merge, the option is not given because git thinks that the merge already happened (as the "empty" merge at the bottom of the graph).
How can I actually merge the contents of these two branches?