##// END OF EJS Templates
identify: add template support...
identify: add template support This is based on a patch proposed last year by Mathias De Maré[1], with a few changes. - Tags and bookmarks are now formatted lists, for more flexible queries. - The templater is populated whether or not [-nibtB] is specified. (Plain output is unchanged.) This seems more consistent with other templated commands. - The 'id' property is a string, instead of a list. - The parents of 'wdir()' have their own list of attributes. I left 'id' as a string because it seems very useful for generating version info. It's also a bit strange because the value and meaning changes depending on whether or not --debug is passed (short vs full hash), whether the revision is a merge or not (one hash or two, separated by a '+'), the working directory or not (node vs p1node), and local or not (remote defaults to tip, and never has '+'). The equivalent string built with {rev} seems much less useful, and I couldn't think of a reasonable name, so I left it out. The discussion seemed to be pointing towards having a list of nodes, with more than one entry for a merge. It seems simpler to give the nodes a name, and use {node} for the actual commit probed, especially now that there is a virtual node for 'wdir()'. Yuya mentioned using fm.nested() in that thread, so I did for the parent nodes. I'm not sure if the plan is to fill in all of the context attributes in these items, or if these nested items should simply be made {p1node} and {p1rev}. I used ':' as the tag separator for consistency with {tags} in the log templater. Likewise, bookmarks are separated by a space for consistency with the corresponding log template. [1] https://www.mercurial-scm.org/pipermail/mercurial-devel/2016-August/087039.html

File last commit:

r28627:d7af9b4a default
r33051:15a79ac8 default
Show More
test-rebase-rename.t
332 lines | 7.3 KiB | text/troff | Tads3Lexer
/ tests / test-rebase-rename.t
Adrian Buehlmann
tests: unify test-rebase*
r12608 $ cat >> $HGRCPATH <<EOF
> [extensions]
> rebase=
>
> [alias]
> tlog = log --template "{rev}: '{desc}' {branches}\n"
> tglog = tlog --graph
> EOF
$ hg init a
$ cd a
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 $ mkdir d
Adrian Buehlmann
tests: unify test-rebase*
r12608 $ echo a > a
$ hg ci -Am A
adding a
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 $ echo b > d/b
Adrian Buehlmann
tests: unify test-rebase*
r12608 $ hg ci -Am B
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 adding d/b
Adrian Buehlmann
tests: unify test-rebase*
r12608
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 $ hg mv d d-renamed
Brendan Cully
tests: check path separator in moves
r19133 moving d/b to d-renamed/b (glob)
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 $ hg ci -m 'rename B'
$ hg up -q -C 1
Adrian Buehlmann
tests: unify test-rebase*
r12608
$ hg mv a a-renamed
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 $ echo x > d/x
$ hg add d/x
Adrian Buehlmann
tests: unify test-rebase*
r12608
$ hg ci -m 'rename A'
created new head
$ hg tglog
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 @ 3: 'rename A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 | o 2: 'rename B'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |/
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 o 1: 'B'
|
Adrian Buehlmann
tests: unify test-rebase*
r12608 o 0: 'A'
Rename is tracked:
$ hg tlog -p --git -r tip
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 3: 'rename A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 diff --git a/a b/a-renamed
rename from a
rename to a-renamed
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 diff --git a/d/x b/d/x
new file mode 100644
--- /dev/null
+++ b/d/x
@@ -0,0 +1,1 @@
+x
Adrian Buehlmann
tests: unify test-rebase*
r12608
Rebase the revision containing the rename:
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 $ hg rebase -s 3 -d 2
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 3:73a3ee40125d "rename A" (tip)
Durham Goode
bundles: do not overwrite existing backup bundles (BC)...
r23835 saved backup bundle to $TESTTMP/a/.hg/strip-backup/73a3ee40125d-1d78ebcf-backup.hg (glob)
Adrian Buehlmann
tests: unify test-rebase*
r12608
$ hg tglog
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 @ 3: 'rename A'
|
o 2: 'rename B'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |
o 1: 'B'
|
o 0: 'A'
Rename is not lost:
$ hg tlog -p --git -r tip
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 3: 'rename A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 diff --git a/a b/a-renamed
rename from a
rename to a-renamed
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 diff --git a/d-renamed/x b/d-renamed/x
new file mode 100644
--- /dev/null
+++ b/d-renamed/x
@@ -0,0 +1,1 @@
+x
Adrian Buehlmann
tests: unify test-rebase*
r12608
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136
Rebased revision does not contain information about b (issue3739)
$ hg log -r 3 --debug
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 changeset: 3:032a9b75e83bff1dcfb6cbfa4ef50a704bf1b569
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 tag: tip
phase: draft
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 parent: 2:220d0626d185f372d9d8f69d9c73b0811d7725f7
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 parent: -1:0000000000000000000000000000000000000000
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 manifest: 3:035d66b27a1b06b2d12b46d41a39adb7a200c370
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 user: test
date: Thu Jan 01 00:00:00 1970 +0000
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 files+: a-renamed d-renamed/x
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 files-: a
extra: branch=default
Matt Mackall
setparents: drop copies from dropped p2 (issue3843)
r18739 extra: rebase_source=73a3ee40125d6f0f347082e5831ceccb3f005f8a
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 description:
rename A
Adrian Buehlmann
tests: unify test-rebase*
r12608 $ cd ..
$ hg init b
$ cd b
$ echo a > a
$ hg ci -Am A
adding a
$ echo b > b
$ hg ci -Am B
adding b
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 $ hg cp b b-copied
$ hg ci -Am 'copy B'
$ hg up -q -C 1
Adrian Buehlmann
tests: unify test-rebase*
r12608
$ hg cp a a-copied
$ hg ci -m 'copy A'
created new head
$ hg tglog
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 @ 3: 'copy A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 | o 2: 'copy B'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |/
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 o 1: 'B'
|
Adrian Buehlmann
tests: unify test-rebase*
r12608 o 0: 'A'
Copy is tracked:
$ hg tlog -p --git -r tip
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 3: 'copy A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 diff --git a/a b/a-copied
copy from a
copy to a-copied
Rebase the revision containing the copy:
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 $ hg rebase -s 3 -d 2
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 3:0a8162ff18a8 "copy A" (tip)
Durham Goode
bundles: do not overwrite existing backup bundles (BC)...
r23835 saved backup bundle to $TESTTMP/b/.hg/strip-backup/0a8162ff18a8-dd06302a-backup.hg (glob)
Adrian Buehlmann
tests: unify test-rebase*
r12608
$ hg tglog
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 @ 3: 'copy A'
|
o 2: 'copy B'
Adrian Buehlmann
tests: unify test-rebase*
r12608 |
o 1: 'B'
|
o 0: 'A'
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136
Adrian Buehlmann
tests: unify test-rebase*
r12608 Copy is not lost:
$ hg tlog -p --git -r tip
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136 3: 'copy A'
Adrian Buehlmann
tests: unify test-rebase*
r12608 diff --git a/a b/a-copied
copy from a
copy to a-copied
Siddharth Agarwal
copies: do not track backward copies, only renames (issue3739)...
r18136
Rebased revision does not contain information about b (issue3739)
$ hg log -r 3 --debug
changeset: 3:98f6e6dbf45ab54079c2237fbd11066a5c41a11d
tag: tip
phase: draft
parent: 2:39e588434882ff77d01229d169cdc77f29e8855e
parent: -1:0000000000000000000000000000000000000000
manifest: 3:2232f329d66fffe3930d43479ae624f66322b04d
user: test
date: Thu Jan 01 00:00:00 1970 +0000
files+: a-copied
extra: branch=default
extra: rebase_source=0a8162ff18a8900df8df8ef7ac0046955205613e
description:
copy A
Stefano Tortarolo
rebase: don't mark file as removed if missing in parent's manifest (issue2725)
r13778 $ cd ..
Test rebase across repeating renames:
$ hg init repo
$ cd repo
$ echo testing > file1.txt
$ hg add file1.txt
$ hg ci -m "Adding file1"
$ hg rename file1.txt file2.txt
$ hg ci -m "Rename file1 to file2"
$ echo Unrelated change > unrelated.txt
$ hg add unrelated.txt
$ hg ci -m "Unrelated change"
$ hg rename file2.txt file1.txt
$ hg ci -m "Rename file2 back to file1"
$ hg update -r -2
1 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ echo Another unrelated change >> unrelated.txt
$ hg ci -m "Another unrelated change"
created new head
$ hg tglog
@ 4: 'Another unrelated change'
|
| o 3: 'Rename file2 back to file1'
|/
o 2: 'Unrelated change'
|
o 1: 'Rename file1 to file2'
|
o 0: 'Adding file1'
$ hg rebase -s 4 -d 3
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 4:b918d683b091 "Another unrelated change" (tip)
Durham Goode
bundles: do not overwrite existing backup bundles (BC)...
r23835 saved backup bundle to $TESTTMP/repo/.hg/strip-backup/b918d683b091-3024bc57-backup.hg (glob)
Stefano Tortarolo
rebase: don't mark file as removed if missing in parent's manifest (issue2725)
r13778
$ hg diff --stat -c .
unrelated.txt | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826
Verify that copies get preserved (issue4192).
$ hg init copy-gets-preserved
$ cd copy-gets-preserved
$ echo a > a
$ hg add a
$ hg commit --message "File a created"
$ hg copy a b
$ echo b > b
$ hg commit --message "File b created as copy of a and modified"
$ hg copy b c
$ echo c > c
$ hg commit --message "File c created as copy of b and modified"
$ hg copy c d
$ echo d > d
$ hg commit --message "File d created as copy of c and modified"
Note that there are four entries in the log for d
$ hg tglog --follow d
@ 3: 'File d created as copy of c and modified'
|
o 2: 'File c created as copy of b and modified'
|
o 1: 'File b created as copy of a and modified'
|
o 0: 'File a created'
Update back to before we performed copies, and inject an unrelated change.
$ hg update 0
0 files updated, 0 files merged, 3 files removed, 0 files unresolved
$ echo unrelated > unrelated
$ hg add unrelated
$ hg commit --message "Unrelated file created"
created new head
$ hg update 4
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
Rebase the copies on top of the unrelated change.
$ hg rebase --source 1 --dest 4
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 1:79d255d24ad2 "File b created as copy of a and modified"
rebasing 2:327f772bc074 "File c created as copy of b and modified"
rebasing 3:421b7e82bb85 "File d created as copy of c and modified"
Durham Goode
bundles: do not overwrite existing backup bundles (BC)...
r23835 saved backup bundle to $TESTTMP/copy-gets-preserved/.hg/strip-backup/79d255d24ad2-a2265555-backup.hg (glob)
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 $ hg update 4
3 files updated, 0 files merged, 0 files removed, 0 files unresolved
There should still be four entries in the log for d
$ hg tglog --follow d
@ 4: 'File d created as copy of c and modified'
|
o 3: 'File c created as copy of b and modified'
|
o 2: 'File b created as copy of a and modified'
Martijn Pieters
graphmod: set default edge styles for ascii graphs (BC)...
r28627 :
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 o 0: 'File a created'
Same steps as above, but with --collapse on rebase to make sure the
copy records collapse correctly.
$ hg co 1
0 files updated, 0 files merged, 3 files removed, 0 files unresolved
$ echo more >> unrelated
$ hg ci -m 'unrelated commit is unrelated'
created new head
$ hg rebase -s 2 --dest 5 --collapse
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 2:68bf06433839 "File b created as copy of a and modified"
rebasing 3:af74b229bc02 "File c created as copy of b and modified"
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 merging b and c to c
Mads Kiilerich
rebase: show more useful status information while rebasing...
r23517 rebasing 4:dbb9ba033561 "File d created as copy of c and modified"
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 merging c and d to d
Durham Goode
bundles: do not overwrite existing backup bundles (BC)...
r23835 saved backup bundle to $TESTTMP/copy-gets-preserved/.hg/strip-backup/68bf06433839-dde37595-backup.hg (glob)
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 $ hg co tip
3 files updated, 0 files merged, 0 files removed, 0 files unresolved
This should show both revision 3 and 0 since 'd' was transitively a
copy of 'a'.
$ hg tglog --follow d
@ 3: 'Collapsed revision
Martijn Pieters
graphmod: set default edge styles for ascii graphs (BC)...
r28627 : * File b created as copy of a and modified
: * File c created as copy of b and modified
: * File d created as copy of c and modified'
Augie Fackler
rebase: fix bug that caused transitive copy records to disappear (issue4192)...
r21826 o 0: 'File a created'
$ cd ..