Show More
@@ -56,12 +56,14 b' mergeonly = internaltool.mergeonly # jus' | |||
|
56 | 56 | fullmerge = internaltool.fullmerge # both premerge and merge |
|
57 | 57 | |
|
58 | 58 | _localchangedotherdeletedmsg = _( |
|
59 | "local%(l)s changed %(fd)s which other%(o)s deleted\n" | |
|
59 | "file %(fd)s was deleted in local%(l)s but was modified in other%(o)s.\n" | |
|
60 | "What do you want to do?\n" | |
|
60 | 61 | "use (c)hanged version, (d)elete, or leave (u)nresolved?" |
|
61 | 62 | "$$ &Changed $$ &Delete $$ &Unresolved") |
|
62 | 63 | |
|
63 | 64 | _otherchangedlocaldeletedmsg = _( |
|
64 | "other%(o)s changed %(fd)s which local%(l)s deleted\n" | |
|
65 | "file %(fd)s was deleted in other%(o)s but was modified in local%(l)s.\n" | |
|
66 | "What do you want to do?\n" | |
|
65 | 67 | "use (c)hanged version, leave (d)eleted, or " |
|
66 | 68 | "leave (u)nresolved?" |
|
67 | 69 | "$$ &Changed $$ &Deleted $$ &Unresolved") |
@@ -824,7 +824,8 b' Amend a merge changeset (with manifest-l' | |||
|
824 | 824 | $ hg merge -q bar --config ui.interactive=True << EOF |
|
825 | 825 | > c |
|
826 | 826 | > EOF |
|
827 |
local [working copy] |
|
|
827 | file aa was deleted in local [working copy] but was modified in other [merge rev]. | |
|
828 | What do you want to do? | |
|
828 | 829 |
|
|
829 | 830 | $ hg ci -m 'merge bar (with conflicts)' |
|
830 | 831 | $ hg log --config diff.git=1 -pr . |
@@ -88,7 +88,8 b' Test disabling copy tracing' | |||
|
88 | 88 | > c |
|
89 | 89 | > EOF |
|
90 | 90 | rebasing 2:add3f11052fa "other" (tip) |
|
91 | other [source] changed a which local [dest] deleted | |
|
91 | file a was deleted in other [source] but was modified in local [dest]. | |
|
92 | What do you want to do? | |
|
92 | 93 |
|
|
93 | 94 | |
|
94 | 95 | $ cat b |
@@ -86,7 +86,8 b' Make sure filename heuristics do not whe' | |||
|
86 | 86 | |
|
87 | 87 | $ hg rebase -s . -d 1 |
|
88 | 88 | rebasing 2:d526312210b9 "mode a" (tip) |
|
89 | other [source] changed a which local [dest] deleted | |
|
89 | file a was deleted in other [source] but was modified in local [dest]. | |
|
90 | What do you want to do? | |
|
90 | 91 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
91 | 92 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
92 | 93 | [1] |
@@ -242,7 +243,8 b' With small limit' | |||
|
242 | 243 | $ hg rebase -s 2 -d 1 --config experimental.copytrace.movecandidateslimit=0 |
|
243 | 244 | rebasing 2:ef716627c70b "mod a" (tip) |
|
244 | 245 | skipping copytracing for 'a', more candidates than the limit: 7 |
|
245 | other [source] changed a which local [dest] deleted | |
|
246 | file a was deleted in other [source] but was modified in local [dest]. | |
|
247 | What do you want to do? | |
|
246 | 248 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
247 | 249 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
248 | 250 | [1] |
@@ -697,7 +699,8 b' When the sourcecommitlimit is small and ' | |||
|
697 | 699 | |
|
698 | 700 | $ hg rebase -s 8b6e13696 -d . |
|
699 | 701 | rebasing 1:8b6e13696c38 "added more things to a" |
|
700 | other [source] changed a which local [dest] deleted | |
|
702 | file a was deleted in other [source] but was modified in local [dest]. | |
|
703 | What do you want to do? | |
|
701 | 704 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
702 | 705 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
703 | 706 | [1] |
@@ -611,7 +611,8 b' the 1st commit of resuming.' | |||
|
611 | 611 | > EOF |
|
612 | 612 | rebasing 1:72518492caa6 "#1" |
|
613 | 613 | rebasing 4:07d6153b5c04 "#4" |
|
614 | local [dest] changed .hglf/large1 which other [source] deleted | |
|
614 | file .hglf/large1 was deleted in local [dest] but was modified in other [source]. | |
|
615 | What do you want to do? | |
|
615 | 616 |
|
|
616 | 617 | |
|
617 | 618 | $ hg diff -c "tip~1" --nodates .hglf/large1 | grep '^[+-][0-9a-z]' |
@@ -54,9 +54,11 b" Make sure HGMERGE doesn't interfere with" | |||
|
54 | 54 | Non-interactive merge: |
|
55 | 55 | |
|
56 | 56 | $ hg merge -y |
|
57 | local [working copy] changed file1 which other [merge rev] deleted | |
|
57 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
58 | What do you want to do? | |
|
58 | 59 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
59 | other [merge rev] changed file2 which local [working copy] deleted | |
|
60 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
61 | What do you want to do? | |
|
60 | 62 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
61 | 63 | merging file3 |
|
62 | 64 | warning: conflicts while merging file3! (edit, then use 'hg resolve --mark') |
@@ -121,9 +123,11 b' Interactive merge:' | |||
|
121 | 123 | > c |
|
122 | 124 | > d |
|
123 | 125 | > EOF |
|
124 | local [working copy] changed file1 which other [merge rev] deleted | |
|
126 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
127 | What do you want to do? | |
|
125 | 128 |
|
|
126 | other [merge rev] changed file2 which local [working copy] deleted | |
|
129 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
130 | What do you want to do? | |
|
127 | 131 |
|
|
128 | 132 | merging file3 |
|
129 | 133 | warning: conflicts while merging file3! (edit, then use 'hg resolve --mark') |
@@ -189,18 +193,23 b' Interactive merge with bad input:' | |||
|
189 | 193 | > baz |
|
190 | 194 | > c |
|
191 | 195 | > EOF |
|
192 | local [working copy] changed file1 which other [merge rev] deleted | |
|
196 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
197 | What do you want to do? | |
|
193 | 198 |
|
|
194 | 199 | unrecognized response |
|
195 | local [working copy] changed file1 which other [merge rev] deleted | |
|
200 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
201 | What do you want to do? | |
|
196 | 202 |
|
|
197 | 203 | unrecognized response |
|
198 | local [working copy] changed file1 which other [merge rev] deleted | |
|
204 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
205 | What do you want to do? | |
|
199 | 206 |
|
|
200 | other [merge rev] changed file2 which local [working copy] deleted | |
|
207 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
208 | What do you want to do? | |
|
201 | 209 |
|
|
202 | 210 | unrecognized response |
|
203 | other [merge rev] changed file2 which local [working copy] deleted | |
|
211 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
212 | What do you want to do? | |
|
204 | 213 |
|
|
205 | 214 | merging file3 |
|
206 | 215 | warning: conflicts while merging file3! (edit, then use 'hg resolve --mark') |
@@ -262,9 +271,11 b' Interactive merge with not enough input:' | |||
|
262 | 271 | $ hg merge --config ui.interactive=true <<EOF |
|
263 | 272 | > d |
|
264 | 273 | > EOF |
|
265 | local [working copy] changed file1 which other [merge rev] deleted | |
|
274 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
275 | What do you want to do? | |
|
266 | 276 |
|
|
267 | other [merge rev] changed file2 which local [working copy] deleted | |
|
277 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
278 | What do you want to do? | |
|
268 | 279 |
|
|
269 | 280 | merging file3 |
|
270 | 281 | warning: conflicts while merging file3! (edit, then use 'hg resolve --mark') |
@@ -473,9 +484,11 b' Force prompts with no input (should be s' | |||
|
473 | 484 | 1 other heads for branch "default" |
|
474 | 485 | |
|
475 | 486 | $ hg merge --config ui.interactive=True --tool :prompt |
|
476 | local [working copy] changed file1 which other [merge rev] deleted | |
|
487 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
488 | What do you want to do? | |
|
477 | 489 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
478 | other [merge rev] changed file2 which local [working copy] deleted | |
|
490 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
491 | What do you want to do? | |
|
479 | 492 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
480 | 493 | keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved for file3? |
|
481 | 494 | 0 files updated, 0 files merged, 0 files removed, 3 files unresolved |
@@ -532,9 +545,11 b' Force prompts' | |||
|
532 | 545 | 1 other heads for branch "default" |
|
533 | 546 | |
|
534 | 547 | $ hg merge --tool :prompt |
|
535 | local [working copy] changed file1 which other [merge rev] deleted | |
|
548 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
549 | What do you want to do? | |
|
536 | 550 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
537 | other [merge rev] changed file2 which local [working copy] deleted | |
|
551 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
552 | What do you want to do? | |
|
538 | 553 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
539 | 554 | keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved for file3? u |
|
540 | 555 | 0 files updated, 0 files merged, 0 files removed, 3 files unresolved |
@@ -589,9 +604,11 b' Choose to merge all files' | |||
|
589 | 604 | 1 other heads for branch "default" |
|
590 | 605 | |
|
591 | 606 | $ hg merge --tool :merge3 |
|
592 | local [working copy] changed file1 which other [merge rev] deleted | |
|
607 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
608 | What do you want to do? | |
|
593 | 609 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
594 | other [merge rev] changed file2 which local [working copy] deleted | |
|
610 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
611 | What do you want to do? | |
|
595 | 612 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
596 | 613 | merging file3 |
|
597 | 614 | warning: conflicts while merging file3! (edit, then use 'hg resolve --mark') |
@@ -679,9 +696,11 b' invocations.)' | |||
|
679 | 696 | (status identical) |
|
680 | 697 | |
|
681 | 698 | === :other -> :prompt === |
|
682 | local [working copy] changed file1 which other [merge rev] deleted | |
|
699 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
700 | What do you want to do? | |
|
683 | 701 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
684 | other [merge rev] changed file2 which local [working copy] deleted | |
|
702 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
703 | What do you want to do? | |
|
685 | 704 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
686 | 705 | keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved for file3? |
|
687 | 706 | --- diff of status --- |
@@ -707,9 +726,11 b' invocations.)' | |||
|
707 | 726 | (status identical) |
|
708 | 727 | |
|
709 | 728 | === :local -> :prompt === |
|
710 | local [working copy] changed file1 which other [merge rev] deleted | |
|
729 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
730 | What do you want to do? | |
|
711 | 731 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
712 | other [merge rev] changed file2 which local [working copy] deleted | |
|
732 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
733 | What do you want to do? | |
|
713 | 734 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
714 | 735 | keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved for file3? |
|
715 | 736 | --- diff of status --- |
@@ -725,9 +746,11 b' invocations.)' | |||
|
725 | 746 | (status identical) |
|
726 | 747 | |
|
727 | 748 | === :fail -> :prompt === |
|
728 | local [working copy] changed file1 which other [merge rev] deleted | |
|
749 | file file1 was deleted in local [working copy] but was modified in other [merge rev]. | |
|
750 | What do you want to do? | |
|
729 | 751 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
730 | other [merge rev] changed file2 which local [working copy] deleted | |
|
752 | file file2 was deleted in other [merge rev] but was modified in local [working copy]. | |
|
753 | What do you want to do? | |
|
731 | 754 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
732 | 755 | keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved for file3? |
|
733 | 756 | --- diff of status --- |
@@ -751,9 +774,11 b' Non-interactive linear update' | |||
|
751 | 774 | $ echo changed >> file1 |
|
752 | 775 | $ hg rm file2 |
|
753 | 776 | $ hg update 1 -y |
|
754 |
local [working copy] |
|
|
777 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
778 | What do you want to do? | |
|
755 | 779 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
756 |
other [destination] |
|
|
780 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
781 | What do you want to do? | |
|
757 | 782 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
758 | 783 | 1 files updated, 0 files merged, 0 files removed, 2 files unresolved |
|
759 | 784 | use 'hg resolve' to retry unresolved file merges |
@@ -927,9 +952,11 b' Force prompts with no input' | |||
|
927 | 952 | $ echo changed >> file1 |
|
928 | 953 | $ hg rm file2 |
|
929 | 954 | $ hg update 1 --config ui.interactive=True --tool :prompt |
|
930 |
local [working copy] |
|
|
955 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
956 | What do you want to do? | |
|
931 | 957 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
932 |
other [destination] |
|
|
958 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
959 | What do you want to do? | |
|
933 | 960 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
934 | 961 | 1 files updated, 0 files merged, 0 files removed, 2 files unresolved |
|
935 | 962 | use 'hg resolve' to retry unresolved file merges |
@@ -977,9 +1004,11 b' Choose to merge all files' | |||
|
977 | 1004 | $ echo changed >> file1 |
|
978 | 1005 | $ hg rm file2 |
|
979 | 1006 | $ hg update 1 --tool :merge3 |
|
980 |
local [working copy] |
|
|
1007 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
1008 | What do you want to do? | |
|
981 | 1009 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
982 |
other [destination] |
|
|
1010 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
1011 | What do you want to do? | |
|
983 | 1012 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
984 | 1013 | 1 files updated, 0 files merged, 0 files removed, 2 files unresolved |
|
985 | 1014 | use 'hg resolve' to retry unresolved file merges |
@@ -1033,9 +1062,11 b' Test transitions between different merge' | |||
|
1033 | 1062 | (status identical) |
|
1034 | 1063 | |
|
1035 | 1064 | === :other -> :prompt === |
|
1036 |
local [working copy] |
|
|
1065 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
1066 | What do you want to do? | |
|
1037 | 1067 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
1038 |
other [destination] |
|
|
1068 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
1069 | What do you want to do? | |
|
1039 | 1070 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
1040 | 1071 | --- diff of status --- |
|
1041 | 1072 | (status identical) |
@@ -1060,9 +1091,11 b' Test transitions between different merge' | |||
|
1060 | 1091 | (status identical) |
|
1061 | 1092 | |
|
1062 | 1093 | === :local -> :prompt === |
|
1063 |
local [working copy] |
|
|
1094 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
1095 | What do you want to do? | |
|
1064 | 1096 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
1065 |
other [destination] |
|
|
1097 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
1098 | What do you want to do? | |
|
1066 | 1099 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
1067 | 1100 | --- diff of status --- |
|
1068 | 1101 | (status identical) |
@@ -1077,9 +1110,11 b' Test transitions between different merge' | |||
|
1077 | 1110 | (status identical) |
|
1078 | 1111 | |
|
1079 | 1112 | === :fail -> :prompt === |
|
1080 |
local [working copy] |
|
|
1113 | file file1 was deleted in local [working copy] but was modified in other [destination]. | |
|
1114 | What do you want to do? | |
|
1081 | 1115 | use (c)hanged version, (d)elete, or leave (u)nresolved? |
|
1082 |
other [destination] |
|
|
1116 | file file2 was deleted in other [destination] but was modified in local [working copy]. | |
|
1117 | What do you want to do? | |
|
1083 | 1118 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? |
|
1084 | 1119 | --- diff of status --- |
|
1085 | 1120 | (status identical) |
@@ -142,55 +142,80 b' Merge with remote' | |||
|
142 | 142 | # in the same way, so it could potentially be left alone |
|
143 | 143 | |
|
144 | 144 | $ hg merge -f --tool internal:merge3 'desc("remote")' 2>&1 | tee $TESTTMP/merge-output-1 |
|
145 |
local [working copy] |
|
|
145 | file content1_missing_content1_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
146 | What do you want to do? | |
|
146 | 147 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
147 |
local [working copy] |
|
|
148 | file content1_missing_content3_content3-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
149 | What do you want to do? | |
|
148 | 150 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
149 |
local [working copy] |
|
|
151 | file content1_missing_content3_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
152 | What do you want to do? | |
|
150 | 153 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
151 | local [working copy] changed content1_missing_missing_content4-tracked which other [merge rev] deleted | |
|
154 | file content1_missing_missing_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
155 | What do you want to do? | |
|
152 | 156 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
153 |
other [merge rev] |
|
|
157 | file content1_content2_content1_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
158 | What do you want to do? | |
|
154 | 159 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
155 |
other [merge rev] |
|
|
160 | file content1_content2_content1_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
161 | What do you want to do? | |
|
156 | 162 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
157 |
other [merge rev] |
|
|
163 | file content1_content2_content1_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
164 | What do you want to do? | |
|
158 | 165 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
159 |
other [merge rev] |
|
|
166 | file content1_content2_content1_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
167 | What do you want to do? | |
|
160 | 168 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
161 |
other [merge rev] |
|
|
169 | file content1_content2_content1_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
170 | What do you want to do? | |
|
162 | 171 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
163 |
other [merge rev] |
|
|
172 | file content1_content2_content2_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
173 | What do you want to do? | |
|
164 | 174 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
165 |
other [merge rev] |
|
|
175 | file content1_content2_content2_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
176 | What do you want to do? | |
|
166 | 177 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
167 |
other [merge rev] |
|
|
178 | file content1_content2_content2_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
179 | What do you want to do? | |
|
168 | 180 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
169 |
other [merge rev] |
|
|
181 | file content1_content2_content2_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
182 | What do you want to do? | |
|
170 | 183 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
171 |
other [merge rev] |
|
|
184 | file content1_content2_content2_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
185 | What do you want to do? | |
|
172 | 186 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
173 |
other [merge rev] |
|
|
187 | file content1_content2_content3_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
188 | What do you want to do? | |
|
174 | 189 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
175 |
other [merge rev] |
|
|
190 | file content1_content2_content3_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
191 | What do you want to do? | |
|
176 | 192 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
177 |
other [merge rev] |
|
|
193 | file content1_content2_content3_content3-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
194 | What do you want to do? | |
|
178 | 195 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
179 |
other [merge rev] |
|
|
196 | file content1_content2_content3_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
197 | What do you want to do? | |
|
180 | 198 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
181 |
other [merge rev] |
|
|
199 | file content1_content2_content3_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
200 | What do you want to do? | |
|
182 | 201 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
183 |
other [merge rev] |
|
|
202 | file content1_content2_content3_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
203 | What do you want to do? | |
|
184 | 204 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
185 |
other [merge rev] |
|
|
205 | file content1_content2_missing_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
206 | What do you want to do? | |
|
186 | 207 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
187 |
other [merge rev] |
|
|
208 | file content1_content2_missing_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
209 | What do you want to do? | |
|
188 | 210 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
189 |
other [merge rev] |
|
|
211 | file content1_content2_missing_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
212 | What do you want to do? | |
|
190 | 213 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
191 |
other [merge rev] |
|
|
214 | file content1_content2_missing_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
215 | What do you want to do? | |
|
192 | 216 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
193 |
other [merge rev] |
|
|
217 | file content1_content2_missing_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
218 | What do you want to do? | |
|
194 | 219 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
195 | 220 | merging content1_content2_content1_content4-tracked |
|
196 | 221 | merging content1_content2_content2_content1-tracked |
@@ -703,63 +728,88 b' Re-resolve and check status' | |||
|
703 | 728 | (no more unresolved files) |
|
704 | 729 | $ hg resolve --unmark --all |
|
705 | 730 | $ hg resolve --all --tool internal:merge3 |
|
706 |
other [merge rev] |
|
|
731 | file content1_content2_content1_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
732 | What do you want to do? | |
|
707 | 733 |
|
|
708 |
other [merge rev] |
|
|
734 | file content1_content2_content1_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
735 | What do you want to do? | |
|
709 | 736 |
|
|
710 | 737 | merging content1_content2_content1_content4-tracked |
|
711 |
other [merge rev] |
|
|
738 | file content1_content2_content1_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
739 | What do you want to do? | |
|
712 | 740 |
|
|
713 |
other [merge rev] |
|
|
741 | file content1_content2_content1_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
742 | What do you want to do? | |
|
714 | 743 |
|
|
715 |
other [merge rev] |
|
|
744 | file content1_content2_content1_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
745 | What do you want to do? | |
|
716 | 746 |
|
|
717 | 747 | merging content1_content2_content2_content1-tracked |
|
718 |
other [merge rev] |
|
|
748 | file content1_content2_content2_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
749 | What do you want to do? | |
|
719 | 750 |
|
|
720 |
other [merge rev] |
|
|
751 | file content1_content2_content2_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
752 | What do you want to do? | |
|
721 | 753 |
|
|
722 | 754 | merging content1_content2_content2_content4-tracked |
|
723 |
other [merge rev] |
|
|
755 | file content1_content2_content2_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
756 | What do you want to do? | |
|
724 | 757 |
|
|
725 |
other [merge rev] |
|
|
758 | file content1_content2_content2_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
759 | What do you want to do? | |
|
726 | 760 |
|
|
727 |
other [merge rev] |
|
|
761 | file content1_content2_content2_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
762 | What do you want to do? | |
|
728 | 763 |
|
|
729 | 764 | merging content1_content2_content3_content1-tracked |
|
730 |
other [merge rev] |
|
|
765 | file content1_content2_content3_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
766 | What do you want to do? | |
|
731 | 767 |
|
|
732 |
other [merge rev] |
|
|
768 | file content1_content2_content3_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
769 | What do you want to do? | |
|
733 | 770 |
|
|
734 | 771 | merging content1_content2_content3_content3-tracked |
|
735 |
other [merge rev] |
|
|
772 | file content1_content2_content3_content3-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
773 | What do you want to do? | |
|
736 | 774 |
|
|
737 | 775 | merging content1_content2_content3_content4-tracked |
|
738 |
other [merge rev] |
|
|
776 | file content1_content2_content3_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
777 | What do you want to do? | |
|
739 | 778 |
|
|
740 |
other [merge rev] |
|
|
779 | file content1_content2_content3_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
780 | What do you want to do? | |
|
741 | 781 |
|
|
742 |
other [merge rev] |
|
|
782 | file content1_content2_content3_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
783 | What do you want to do? | |
|
743 | 784 |
|
|
744 | 785 | merging content1_content2_missing_content1-tracked |
|
745 |
other [merge rev] |
|
|
786 | file content1_content2_missing_content1-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
787 | What do you want to do? | |
|
746 | 788 |
|
|
747 |
other [merge rev] |
|
|
789 | file content1_content2_missing_content2-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
790 | What do you want to do? | |
|
748 | 791 |
|
|
749 | 792 | merging content1_content2_missing_content4-tracked |
|
750 |
other [merge rev] |
|
|
793 | file content1_content2_missing_content4-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
794 | What do you want to do? | |
|
751 | 795 |
|
|
752 |
other [merge rev] |
|
|
796 | file content1_content2_missing_missing-tracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
797 | What do you want to do? | |
|
753 | 798 |
|
|
754 |
other [merge rev] |
|
|
799 | file content1_content2_missing_missing-untracked was deleted in other [merge rev] but was modified in local [working copy]. | |
|
800 | What do you want to do? | |
|
755 | 801 |
|
|
756 |
local [working copy] |
|
|
802 | file content1_missing_content1_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
803 | What do you want to do? | |
|
757 | 804 |
|
|
758 |
local [working copy] |
|
|
805 | file content1_missing_content3_content3-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
806 | What do you want to do? | |
|
759 | 807 |
|
|
760 |
local [working copy] |
|
|
808 | file content1_missing_content3_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
809 | What do you want to do? | |
|
761 | 810 |
|
|
762 | local [working copy] changed content1_missing_missing_content4-tracked which other [merge rev] deleted | |
|
811 | file content1_missing_missing_content4-tracked was deleted in local [working copy] but was modified in other [merge rev]. | |
|
812 | What do you want to do? | |
|
763 | 813 |
|
|
764 | 814 | merging missing_content2_content2_content4-tracked |
|
765 | 815 | merging missing_content2_content3_content3-tracked |
@@ -102,7 +102,8 b' Merge should not overwrite local file th' | |||
|
102 | 102 | Those who use force will lose |
|
103 | 103 | |
|
104 | 104 | $ hg merge -f |
|
105 |
other [merge rev] |
|
|
105 | file bar was deleted in other [merge rev] but was modified in local [working copy]. | |
|
106 | What do you want to do? | |
|
106 | 107 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
107 | 108 | merging foo1 and foo to foo1 |
|
108 | 109 | 0 files updated, 1 files merged, 0 files removed, 1 files unresolved |
@@ -110,7 +110,8 b' missing file in the top level repo.' | |||
|
110 | 110 | $ hg up -r '.^' --config ui.interactive=True << EOF |
|
111 | 111 | > d |
|
112 | 112 | > EOF |
|
113 |
other [destination] |
|
|
113 | file b was deleted in other [destination] but was modified in local [working copy]. | |
|
114 | What do you want to do? | |
|
114 | 115 |
|
|
115 | 116 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
116 | 117 |
@@ -133,7 +133,8 b' Full rebase all the way back from branch' | |||
|
133 | 133 | note: rebase of 1:1d1a643d390e created no changes to commit |
|
134 | 134 | rebasing 2:ec2c14fb2984 "dev: f-dev stuff" |
|
135 | 135 | rebasing 4:4b019212aaf6 "dev: merge default" |
|
136 | other [source] changed f-default which local [dest] deleted | |
|
136 | file f-default was deleted in other [source] but was modified in local [dest]. | |
|
137 | What do you want to do? | |
|
137 | 138 |
|
|
138 | 139 | rebasing 6:9455ee510502 "dev: merge default" |
|
139 | 140 | saved backup bundle to $TESTTMP/ancestor-merge/.hg/strip-backup/1d1a643d390e-43e9e04b-rebase.hg |
@@ -162,7 +163,8 b' Grafty cherry picking rebasing:' | |||
|
162 | 163 | > EOF |
|
163 | 164 | rebasing 2:ec2c14fb2984 "dev: f-dev stuff" |
|
164 | 165 | rebasing 4:4b019212aaf6 "dev: merge default" |
|
165 | other [source] changed f-default which local [dest] deleted | |
|
166 | file f-default was deleted in other [source] but was modified in local [dest]. | |
|
167 | What do you want to do? | |
|
166 | 168 |
|
|
167 | 169 | rebasing 6:9455ee510502 "dev: merge default" |
|
168 | 170 | saved backup bundle to $TESTTMP/ancestor-merge-2/.hg/strip-backup/ec2c14fb2984-62d0b222-rebase.hg |
@@ -692,7 +692,8 b' m "um a c" "um x c" " " "10 do merg' | |||
|
692 | 692 | starting 4 threads for background file closing (?) |
|
693 | 693 | a: prompt deleted/changed -> m (premerge) |
|
694 | 694 | picked tool ':prompt' for a (binary False symlink False changedelete True) |
|
695 |
other [merge rev] |
|
|
695 | file a was deleted in other [merge rev] but was modified in local [working copy]. | |
|
696 | What do you want to do? | |
|
696 | 697 | use (c)hanged version, leave (d)eleted, or leave (u)nresolved? u |
|
697 | 698 | b: both created -> m (premerge) |
|
698 | 699 | picked tool '* ../merge' for b (binary False symlink False changedelete False) (glob) |
@@ -737,7 +738,8 b' m "um a c" "um x c" " " "10 do merg' | |||
|
737 | 738 | starting 4 threads for background file closing (?) |
|
738 | 739 | a: prompt changed/deleted -> m (premerge) |
|
739 | 740 | picked tool ':prompt' for a (binary False symlink False changedelete True) |
|
740 |
local [working copy] |
|
|
741 | file a was deleted in local [working copy] but was modified in other [merge rev]. | |
|
742 | What do you want to do? | |
|
741 | 743 | use (c)hanged version, (d)elete, or leave (u)nresolved? u |
|
742 | 744 | b: both created -> m (premerge) |
|
743 | 745 | picked tool '* ../merge' for b (binary False symlink False changedelete False) (glob) |
@@ -113,7 +113,8 b' file is excluded from sparse checkout' | |||
|
113 | 113 | |
|
114 | 114 | $ hg merge |
|
115 | 115 | temporarily included 1 file(s) in the sparse checkout for merging |
|
116 |
local [working copy] |
|
|
116 | file d was deleted in local [working copy] but was modified in other [merge rev]. | |
|
117 | What do you want to do? | |
|
117 | 118 |
|
|
118 | 119 | 0 files updated, 0 files merged, 0 files removed, 1 files unresolved |
|
119 | 120 | use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon |
General Comments 0
You need to be logged in to leave comments.
Login now