1

After merging I get next log:

git merge --no-ff feature/seamless_registration 
Auto-merging cpanfile
CONFLICT (content): Merge conflict in cpanfile
Auto-merging bin/myapp
CONFLICT (content): Merge conflict in bin/myapp
Resolved 'bin/myapp' using previous resolution.
Resolved 'cpanfile' using previous resolution.
Automatic merge failed; fix conflicts and then commit the result.

After this I can view how this merge conflicts are resolved:

$git diff cpanfile
...

But how can I view original merge conflict?

man git rerere seems has no such command

Eugen Konkov
  • 22,193
  • 17
  • 108
  • 158

1 Answers1

0

git checkout -m cpanfile should return the file to pre-conflict-resolution state

IrLED
  • 438
  • 2
  • 5