I have following problem:
I have some common commit A for two branches Branch1 and Branch2.
- Branch1 is a public branch (lies on server)
- Branch2 is a local branch
In Branch1 I changed file (BAD_folder/somefile.txt
). Changes were pushed to server. In Branch2 I renamed BAD_folder
to folder
and made some changes in somefile.txt
. I want to merge Branch1 with Branch2, but I get a merge conflict in BAD_folder/somefile.txt
file.
How can I resolve this?