When git encounters conflicts upon merging, a list is displayed, where every entry begins with CONFLICT
and contains information about the reason of the conflict, like (renamed/deleted)
.
I am looking for a way to retrieve this exact list after rebooting the machine or merely closing the CLI.
There is of course:
git diff --name-only --diff-filter=U
However this does not contain information about the reason for the conflict, so finding this out for 50+ files is more effort than resetting git and redoing the merge.
Can this be achieved, e.g. using reflog
?
EDIT: Please note, this question refers specifically to the list described, I am not asking for other solutions to resolve merge conflicts.