Skip to content
Snippets Groups Projects
Commit 58a4eb16 authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

filemerge: add support for change/delete conflicts to the ':prompt' tool

We haven't added the 'leave unresolved' option yet -- that will come in a
future patch.
parent a8908c13
No related branches found
No related tags found
No related merge requests found
......@@ -221,10 +221,23 @@
fd = fcd.path()
try:
index = ui.promptchoice(_("no tool found to merge %s\n"
"keep (l)ocal or take (o)ther?"
"$$ &Local $$ &Other") % fd, 0)
choice = ['local', 'other'][index]
if fco.isabsent():
index = ui.promptchoice(
_("local changed %s which remote deleted\n"
"use (c)hanged version or (d)elete?"
"$$ &Changed $$ &Delete") % fd, 0)
choice = ['local', 'other'][index]
elif fcd.isabsent():
index = ui.promptchoice(
_("remote changed %s which local deleted\n"
"use (c)hanged version or leave (d)eleted?"
"$$ &Changed $$ &Deleted") % fd, 0)
choice = ['other', 'local'][index]
else:
index = ui.promptchoice(_("no tool found to merge %s\n"
"keep (l)ocal or take (o)ther?"
"$$ &Local $$ &Other") % fd, 0)
choice = ['local', 'other'][index]
if choice == 'other':
return _iother(repo, mynode, orig, fcd, fco, fca, toolconf)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment