I am using git. I want to merge files from branch test
to my master
. I did git merge --no-ff test
. Now git status
shows
# On branch master
# Changes to be committed:
#
# new file: a.txt
# modified: b.txt
# renamed: c.txt
# deleted: d.txt
#
# Unmerged paths:
# (use "git add/rm <file>..." as appropriate to mark resolution)
#
# both added: e.txt
# both modified: f.txt
# both modified: g.txt
# deleted by us: h.txt
# deleted by them: i.txt
Now I proceeded by git mergetool
. I am using meld as my merge tool. Everything is fine till now. I resolved conflicts only on e.txt
, f.txt
and g.txt
. Files h.txt
and i.txt
are not resolved yet. So haven't commited anything yet. Now I thought I have done some mistakes. I want to revisit what I have done so far. I want to have a re-look at e.txt
, f.txt
and g.txt
.
How can I do it?
I tried to rerun git mergetool
. But it doesn't show e.txt
, f.txt
and g.txt
. It starts with h.txt
and i.txt
. :-(
For simplifying the situation I have given this txt files as an example. But actually I am trying to merge more than 500 files and more than 100 is with conflicts!
Please suggest.