##// END OF EJS Templates
phabricator: warn if unable to amend, instead of aborting after posting...
phabricator: warn if unable to amend, instead of aborting after posting There was a divergence in behavior here between obsolete and strip based amending. I first noticed the abort when testing outside of the test harness, but then had trouble recreating it here after reverting the code changes. It turns out, strip based amend was successfully amending the public commit after it was posted! It looks like the protection is in the `commit --amend` command, not in the underlying code that it calls. I considered doing a preflight check and aborting. But the locks are only acquired at the end, if amending, and this is too large a section of code to be wrapped in a maybe-it's-held-or-not context manager for my tastes. Additionally, some people do post-push reviews, and amending is the default behavior, so they shouldn't see a misleading error message. The lack of a 'Differential Revision' entry in the commit message breaks a {phabreview} test, so it had to be partially conditionalized.

File last commit:

r38268:d0abd794 @34 default
r41198:0101a35d default
Show More
test-rename-dir-merge.t
296 lines | 6.6 KiB | text/troff | Tads3Lexer
/ tests / test-rename-dir-merge.t
Martin Geisler
tests: remove redundant mkdir...
r13956 $ hg init t
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ cd t
$ mkdir a
$ echo foo > a/a
$ echo bar > a/b
$ hg ci -Am "0"
adding a/a
adding a/b
$ hg co -C 0
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg mv a b
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 moving a/a to b/a
moving a/b to b/b
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg ci -m "1 mv a/ b/"
$ hg co -C 0
2 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ echo baz > a/c
$ echo quux > a/d
$ hg add a/c
$ hg ci -m "2 add a/c"
created new head
$ hg merge --debug 1
searching for copies back to rev 1
unmatched files in local:
a/c
unmatched files in other:
b/a
b/b
Thomas Arendsen Hein
merge: show renamed on one and deleted on the other side in debug output
r16795 all copies found (* = to merge, ! = divergent, % = renamed and deleted):
Siddharth Agarwal
copies: make debug messages more sensible...
r18135 src: 'a/a' -> dst: 'b/a'
src: 'a/b' -> dst: 'b/b'
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 checking for directory renames
Siddharth Agarwal
copies: make debug messages more sensible...
r18135 discovered dir src: 'a/' -> dst: 'b/'
pending file src: 'a/c' -> dst: 'b/c'
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 resolving manifests
Siddharth Agarwal
manifestmerge: pass in branchmerge and force separately...
r18605 branchmerge: True, force: False, partial: False
Martin Geisler
merge: make debug output easier to read...
r15625 ancestor: f9b20c0d4c51, local: ce36d17b18fb+, remote: 397f8b00a740
Mads Kiilerich
merge: process files in sorted order
r18360 a/a: other deleted -> r
Mads Kiilerich
merge: change debug logging - test output changes but no real changes...
r21391 removing a/a
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 a/b: other deleted -> r
removing a/b
Mads Kiilerich
merge: change debug logging - test output changes but no real changes...
r21391 b/a: remote created -> g
Bryan O'Sullivan
tests: update test output (will be folded into parent)
r18631 getting b/a
Mads Kiilerich
merge: change debug logging - test output changes but no real changes...
r21391 b/b: remote created -> g
Bryan O'Sullivan
tests: update test output (will be folded into parent)
r18631 getting b/b
Mads Kiilerich
merge: change debug logging - test output changes but no real changes...
r21391 b/c: remote directory rename - move from a/c -> dm
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 moving a/c to b/c
Matt Mackall
merge: don't use unknown()...
r16094 3 files updated, 0 files merged, 2 files removed, 0 files unresolved
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 (branch merge, don't forget to commit)
$ echo a/* b/*
Matt Mackall
merge: don't use unknown()...
r16094 a/d b/a b/b b/c
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg st -C
M b/a
M b/b
A b/c
a/c
R a/a
R a/b
R a/c
Matt Mackall
merge: don't use unknown()...
r16094 ? a/d
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg ci -m "3 merge 2+1"
$ hg debugrename b/c
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 b/c renamed from a/c:354ae8da6e890359ef49ade27b68bbc361f3ca88
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114
$ hg co -C 1
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ hg merge --debug 2
searching for copies back to rev 1
unmatched files in local:
b/a
b/b
unmatched files in other:
a/c
Thomas Arendsen Hein
merge: show renamed on one and deleted on the other side in debug output
r16795 all copies found (* = to merge, ! = divergent, % = renamed and deleted):
Siddharth Agarwal
copies: make debug messages more sensible...
r18135 src: 'a/a' -> dst: 'b/a'
src: 'a/b' -> dst: 'b/b'
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 checking for directory renames
Siddharth Agarwal
copies: make debug messages more sensible...
r18135 discovered dir src: 'a/' -> dst: 'b/'
pending file src: 'a/c' -> dst: 'b/c'
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 resolving manifests
Siddharth Agarwal
manifestmerge: pass in branchmerge and force separately...
r18605 branchmerge: True, force: False, partial: False
Martin Geisler
merge: make debug output easier to read...
r15625 ancestor: f9b20c0d4c51, local: 397f8b00a740+, remote: ce36d17b18fb
Matt Harbison
tests: flag Windows specific lines about background closing as optional
r28318 starting 4 threads for background file closing (?)
Mads Kiilerich
merge: keep destination filename as key in actions for merge with dir rename...
r20944 b/c: local directory rename - get from a/c -> dg
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 getting a/c to b/c
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ echo a/* b/*
Matt Mackall
merge: don't use unknown()...
r16094 a/d b/a b/b b/c
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg st -C
A b/c
a/c
Matt Mackall
merge: don't use unknown()...
r16094 ? a/d
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg ci -m "4 merge 1+2"
created new head
$ hg debugrename b/c
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 b/c renamed from a/c:354ae8da6e890359ef49ade27b68bbc361f3ca88
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 Local directory rename with conflicting file added in remote source directory
and untracked in local target directory.
$ hg co -qC 1
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 $ echo target > b/c
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 $ hg merge 2
Martin von Zweigbergk
merge: don't overwrite untracked file at directory rename target...
r23653 b/c: untracked file differs
abort: untracked files in working directory differ from files in requested revision
[255]
$ cat b/c
target
but it should succeed if the content matches
$ hg cat -r 2 a/c > b/c
$ hg merge 2
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
Martin von Zweigbergk
merge: don't overwrite untracked file at directory rename target...
r23653 $ hg st -C
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 A b/c
a/c
? a/d
Local directory rename with conflicting file added in remote source directory
and committed in local target directory.
$ hg co -qC 1
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 $ echo target > b/c
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 $ hg add b/c
$ hg commit -qm 'new file in target directory'
$ hg merge 2
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 merging b/c and a/c to b/c
Siddharth Agarwal
simplemerge: move conflict warning message to filemerge...
r26614 warning: conflicts while merging b/c! (edit, then use 'hg resolve --mark')
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
Pulkit Goyal
merge: add `--abort` flag which can abort the merge...
r35722 use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 [1]
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 $ hg st -A
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 M b/c
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 a/c
? a/d
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 ? b/c.orig
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 C b/a
C b/b
$ cat b/c
Simon Farnsworth
merge: add conflict labels to merge command...
r30062 <<<<<<< working copy: f1c50ca4f127 - test: new file in target directory
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 target
=======
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 baz
Kostia Balytskyi
conflicts: make spacing consistent in conflict markers...
r30460 >>>>>>> merge rev: ce36d17b18fb - test: 2 add a/c
Martin von Zweigbergk
merge: don't overwrite conflicting file in locally renamed directory...
r23476 $ rm b/c.orig
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464
Remote directory rename with conflicting file added in remote target directory
and committed in local source directory.
$ hg co -qC 2
$ hg st -A
? a/d
C a/a
C a/b
C a/c
$ hg merge 5
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 merging a/c and b/c to b/c
Siddharth Agarwal
simplemerge: move conflict warning message to filemerge...
r26614 warning: conflicts while merging b/c! (edit, then use 'hg resolve --mark')
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 2 files updated, 0 files merged, 2 files removed, 1 files unresolved
Pulkit Goyal
merge: add `--abort` flag which can abort the merge...
r35722 use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 [1]
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 $ hg st -A
M b/a
M b/b
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 M b/c
Martin von Zweigbergk
merge: add test with conflicting file and remote directory rename...
r23464 a/c
R a/a
R a/b
R a/c
? a/d
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 ? b/c.orig
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 $ cat b/c
Kostia Balytskyi
conflicts: make spacing consistent in conflict markers...
r30460 <<<<<<< working copy: ce36d17b18fb - test: 2 add a/c
Martin von Zweigbergk
merge: demonstrate that directory renames can lose local file content...
r23444 baz
Martin von Zweigbergk
merge: don't ignore conflicting file in remote renamed directory...
r23475 =======
target
Simon Farnsworth
merge: add conflict labels to merge command...
r30062 >>>>>>> merge rev: f1c50ca4f127 - test: new file in target directory
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114
Second scenario with two repos:
$ cd ..
Martin Geisler
tests: remove redundant mkdir...
r13956 $ hg init r1
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ cd r1
$ mkdir a
$ echo foo > a/f
$ hg add a
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 adding a/f
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg ci -m "a/f == foo"
$ cd ..
$ hg clone r1 r2
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd r2
$ hg mv a b
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 moving a/f to b/f
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ echo foo1 > b/f
$ hg ci -m" a -> b, b/f == foo1"
$ cd ..
$ cd r1
$ mkdir a/aa
$ echo bar > a/aa/g
$ hg add a/aa
Matt Harbison
tests: remove (glob) annotations that were only for '\' matches...
r35394 adding a/aa/g
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 $ hg ci -m "a/aa/g"
$ hg pull ../r2
pulling from ../r2
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files (+1 heads)
Denis Laxalde
transaction-summary: show the range of new revisions upon pull/unbundle (BC)...
r34662 new changesets 7d51ed18da25
Boris Feld
phases: use "published" in the phase movement message...
r38268 1 local changesets published
Nicolas Dumazet
tests: merge the two test-rename-dir-merge* into one
r12114 (run 'hg heads' to see heads, 'hg merge' to merge)
$ hg merge
2 files updated, 0 files merged, 1 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg st -C
M b/f
A b/aa/g
a/aa/g
R a/aa/g
R a/f
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..
Matt Mackall
copies: fix detection of divergent directory renames...
r27876
Test renames to separate directories
$ hg init a
$ cd a
$ mkdir a
$ touch a/s
$ touch a/t
$ hg ci -Am0
adding a/s
adding a/t
Add more files
$ touch a/s2
$ touch a/t2
$ hg ci -Am1
adding a/s2
adding a/t2
Do moves on a branch
$ hg up 0
0 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ mkdir s
$ mkdir t
$ hg mv a/s s
$ hg mv a/t t
$ hg ci -Am2
created new head
$ hg st --copies --change .
A s/s
a/s
A t/t
a/t
R a/s
R a/t
Merge shouldn't move s2, t2
$ hg merge
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg st --copies
M a/s2
M a/t2
Try the merge in the other direction. It may or may not be appropriate for
status to list copies here.
$ hg up -C 1
4 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ hg merge
2 files updated, 0 files merged, 2 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg st --copies
M s/s
M t/t
R a/s
R a/t