David Marciel
David Marciel

Reputation: 939

Commit merge conflict

I want to push files to git even when there is a merge conflict (in this case I want to push the conflict). I don´t find the way. Git doesn't allow me to commit due to the conflict, but I want to push this conflict.

How can I do it?

Upvotes: 0

Views: 56

Answers (1)

simon-pearson
simon-pearson

Reputation: 1970

Use git add to mark the file as resolved, and then git commit to complete the merge.

Upvotes: 1

Related Questions