I just encountered a problem when merging a branch into master in git. First, I got the branch name by running git ls-remote
. Let\'s call that branch \"branch-n
This answer is not related to the above question, but I faced a similar issue, and maybe this will be useful to someone. I am trying to merge my feature branch to master like below:
$ git merge fix-load
for this got the following error message:
merge: fix-load - not something we can merge
I looked into above all solutions, but not none of the worked.
Finally, I realized the issue cause is a spelling mistake on my branch name (actually, the merge branch name is fix-loads
).