Luong Dinh
Luong Dinh

Reputation: 569

Confusing git conflicts

Hi I really don't understand why git say this is a conflict.

Do you have any idea?

enter image description here

Upvotes: 1

Views: 170

Answers (1)

VonC
VonC

Reputation: 1323303

That means the line was:

  • deleted in integrate branch
  • modified in feature/xxx branch

Git cannot chose automatically which action to apply for that line, hence the conflict for you to resolve:

  • delete
  • or keep the line from feature/xxx.

Upvotes: 1

Related Questions