views:

40

answers:

1

Hi,

at the moment I'm merging a very large project and unfortunately I have lots of conflicts. After merging some files I realized that I made merge errors in a specific file and now it is marked as resolved. How can I unresolve it in git in order to merge it again.

I tried git reset --hard -- myFile.txt but it doesn't work.

Regards, Steffen

+2  A: 

There's a previous question you may be interested in: http://stackoverflow.com/questions/2780483/is-there-a-way-to-make-git-mark-a-file-as-conflicted

Blair Holloway