Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "not something we can merge" error?

Tags:

git

I have a remote GitHub repository named "myRepository". Over there I have two branches: master, and test. I checked out these two branches to my work directories: c:\master, c:\test.

When I am at c:\test I did git merge master and I got an error

merge: master - not something we can merge

Did you mean this?
        remoterepo/master

Can you please explain this error to me? I was trying to merge test to master in my working directory (so c:\master will be update with c:\test code) and then I would like to push the updates to the remote master.

like image 585
yoav123456 Avatar asked Sep 14 '25 00:09

yoav123456


1 Answers

It means there is a typo mistake in your branch name.

like image 103
Nalan Madheswaran Avatar answered Sep 15 '25 13:09

Nalan Madheswaran