I\'ve merged two branches. Got lot\'s of conflicts. Resolved them all. Now I\'m not sure, maybe I\'ve made an error during conflict resolution. And I don\'t see no another way t
If you want to look at what the merge did you can do
git show
If you want to redo the entire merge you do
git checkout
git reset --hard
git merge
If you want to redo the merge and then compare the second merge to the first merge (to consider if it was better) you can do:
git checkout
git rev-parse HEAD
This gives you the hash of the current commit. Note it down. Then do
git reset --hard
git merge
Finish the merge, then do this to compare the merges
git difftool
If you felt that the original merge was better, you can do
git reset --hard