0

I have two feature branches.

Branch1 and Branch2, and I want to merge Branch1 to Branch2 in eclipse.

But am getting conflicts.

Not able to find any working solution.

Can anyone please help me ?

Thanks

  • 1
    Well, you need to resolve the conflicts. A conflict happens when git can't figure out what to do by itself and needs your help. – JB Nizet Jul 02 '19 at 17:29
  • 3
    Possible duplicate of [How to resolve merge conflicts in Git](https://stackoverflow.com/questions/161813/how-to-resolve-merge-conflicts-in-git) – Christopher Jul 02 '19 at 17:39

1 Answers1

0

Please post the error. With no details it's hard to answer your question. If you have conflicts check your files it may have <<<HEAD which is the conflict marker. After you solve the conflicts commit your changes and then try to merge again.

  • After you solve your conflicts, you add them to index, then run `git merge --continue`, no need to merge _again_, just in case. – eftshift0 Jul 02 '19 at 17:40
  • @eftshift0 The question is about Git via Eclipse, not Git via the command line (which may not even be installed). – howlger Jul 03 '19 at 06:44