I have a branch on GitHub (origin) called issue75. I have a local issue75 branch that I'm trying to sync up with origin, but when I run the following...
git merge origin/issue75
I end up with a message telling me "Already up-to-date."
However, if I compare them with...
git diff origin/issue75
I do see that there are differences between the files in my local issue75 branch vs. the origin/issue75 branch.
I'm not sure how to resolve this at this point and would appreciate any assistance I can get. Thanks!