##// END OF EJS Templates
amend: allow amend of non-head when obsolete is enabled...
amend: allow amend of non-head when obsolete is enabled Obsolescence marker can represent this situation just fine. The old version is marked as precursor of the new changeset. All its descendants become "unstable". If obsolescence is not enabled we keep the current behavior of aborting. This new behavior only applies when obsolete is enabled and is subject to future discussion and changes.

File last commit:

r18163:c5bd753c default
r18163:c5bd753c default
Show More
test-commit-amend.t
480 lines | 12.2 KiB | text/troff | Tads3Lexer
/ tests / test-commit-amend.t
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg init
Setup:
$ echo a >> a
$ hg ci -Am 'base'
adding a
Refuse to amend public csets:
$ hg phase -r . -p
$ hg ci --amend
abort: cannot amend public changesets
[255]
$ hg phase -r . -f -d
$ echo a >> a
$ hg ci -Am 'base1'
Nothing to amend:
$ hg ci --amend
nothing changed
[1]
Adrian Buehlmann
test-commit-amend: adapt for Windows after fba17a64fa49
r17060 $ cat >> $HGRCPATH <<EOF
> [hooks]
Jim Hague
tests: correct quoting of double quotes in here documents used to write hooks...
r17462 > pretxncommit.foo = sh -c "echo \\"pretxncommit \$HG_NODE\\"; hg id -r \$HG_NODE"
Adrian Buehlmann
test-commit-amend: adapt for Windows after fba17a64fa49
r17060 > EOF
Idan Kamara
amend: disable hooks when creating intermediate commit (issue3501)
r17049
Idan Kamara
commit: add option to amend the working dir parent...
r16458 Amending changeset with changes in working dir:
Pierre-Yves David
amend: force editor only if old message is reused (issue3698)...
r17924 (and check that --message does not trigger an editor)
Idan Kamara
commit: add option to amend the working dir parent...
r16458
$ echo a >> a
Pierre-Yves David
amend: force editor only if old message is reused (issue3698)...
r17924 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg commit --amend -m 'amend base1'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 pretxncommit 43f1ba15f28a50abf0aae529cf8a16bfced7b149
43f1ba15f28a tip
Adrian Buehlmann
test-commit-amend: adapt for Windows after fba17a64fa49
r17060 saved backup bundle to $TESTTMP/.hg/strip-backup/489edb5b847d-amend-backup.hg (glob)
Idan Kamara
amend: disable hooks when creating intermediate commit (issue3501)
r17049 $ echo 'pretxncommit.foo = ' >> $HGRCPATH
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg diff -c .
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 diff -r ad120869acf0 -r 43f1ba15f28a a
Idan Kamara
commit: add option to amend the working dir parent...
r16458 --- a/a Thu Jan 01 00:00:00 1970 +0000
+++ b/a Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,3 @@
a
+a
+a
$ hg log
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 changeset: 1:43f1ba15f28a
Idan Kamara
commit: add option to amend the working dir parent...
r16458 tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: amend base1
changeset: 0:ad120869acf0
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: base
Add new file:
$ echo b > b
$ hg ci --amend -Am 'amend base1 new file'
adding b
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/43f1ba15f28a-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Remove file that was added in amended commit:
Pierre-Yves David
amend: fix incompatibity between logfile and message option (issue3675)...
r17863 (and test logfile option)
Pierre-Yves David
amend: force editor only if old message is reused (issue3698)...
r17924 (and test that logfile option do not trigger an editor)
Idan Kamara
commit: add option to amend the working dir parent...
r16458
$ hg rm b
Pierre-Yves David
amend: fix incompatibity between logfile and message option (issue3675)...
r17863 $ echo 'amend base1 remove new file' > ../logfile
Pierre-Yves David
amend: force editor only if old message is reused (issue3698)...
r17924 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg ci --amend --logfile ../logfile
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/b8e3cb2b3882-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458
$ hg cat b
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 b: no such file in rev 74609c7f506e
Idan Kamara
commit: add option to amend the working dir parent...
r16458 [1]
No changes, just a different message:
$ hg ci -v --amend -m 'no changes, new message'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 amending changeset 74609c7f506e
copying changeset 74609c7f506e to ad120869acf0
Idan Kamara
commit: add option to amend the working dir parent...
r16458 a
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 stripping amended changeset 74609c7f506e
Idan Kamara
commit: add option to amend the working dir parent...
r16458 1 changesets found
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/74609c7f506e-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 1 changesets found
adding branch
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 committed changeset 1:1cd866679df8
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg diff -c .
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 diff -r ad120869acf0 -r 1cd866679df8 a
Idan Kamara
commit: add option to amend the working dir parent...
r16458 --- a/a Thu Jan 01 00:00:00 1970 +0000
+++ b/a Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +1,3 @@
a
+a
+a
$ hg log
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 changeset: 1:1cd866679df8
Idan Kamara
commit: add option to amend the working dir parent...
r16458 tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: no changes, new message
changeset: 0:ad120869acf0
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: base
Disable default date on commit so when -d isn't given, the old date is preserved:
$ echo '[defaults]' >> $HGRCPATH
$ echo 'commit=' >> $HGRCPATH
Test -u/-d:
$ hg ci --amend -u foo -d '1 0'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/1cd866679df8-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ echo a >> a
$ hg ci --amend -u foo -d '1 0'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/780e6f23e03d-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg log -r .
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 changeset: 1:5f357c7560ab
Idan Kamara
commit: add option to amend the working dir parent...
r16458 tag: tip
user: foo
date: Thu Jan 01 00:00:01 1970 +0000
summary: no changes, new message
Open editor with old commit message if a message isn't given otherwise:
Mads Kiilerich
tests: consistently use a HGEDITOR pattern that works with msys on windows...
r16901 $ cat > editor.sh << '__EOF__'
Idan Kamara
commit: add option to amend the working dir parent...
r16458 > #!/bin/sh
> cat $1
> echo "another precious commit message" > "$1"
> __EOF__
Mads Kiilerich
tests: consistently use a HGEDITOR pattern that works with msys on windows...
r16901 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg commit --amend -v
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 amending changeset 5f357c7560ab
copying changeset 5f357c7560ab to ad120869acf0
Idan Kamara
commit: add option to amend the working dir parent...
r16458 no changes, new message
HG: Enter commit message. Lines beginning with 'HG:' are removed.
HG: Leave message empty to abort commit.
HG: --
HG: user: foo
HG: branch 'default'
HG: changed a
a
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 stripping amended changeset 5f357c7560ab
Idan Kamara
commit: add option to amend the working dir parent...
r16458 1 changesets found
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/5f357c7560ab-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 1 changesets found
adding branch
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 committed changeset 1:7ab3bf440b54
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Same, but with changes in working dir (different code path):
$ echo a >> a
Mads Kiilerich
tests: consistently use a HGEDITOR pattern that works with msys on windows...
r16901 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg commit --amend -v
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 amending changeset 7ab3bf440b54
Pierre-Yves David
amend: use an explicit commit message for temporary amending commit...
r17473 a
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 copying changeset a0ea9b1a4c8c to ad120869acf0
Idan Kamara
commit: add option to amend the working dir parent...
r16458 another precious commit message
HG: Enter commit message. Lines beginning with 'HG:' are removed.
HG: Leave message empty to abort commit.
HG: --
HG: user: foo
HG: branch 'default'
HG: changed a
a
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 stripping intermediate changeset a0ea9b1a4c8c
stripping amended changeset 7ab3bf440b54
Idan Kamara
commit: add option to amend the working dir parent...
r16458 2 changesets found
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/7ab3bf440b54-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 1 changesets found
adding branch
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 committed changeset 1:ea22a388757c
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Mads Kiilerich
tests: consistently use a HGEDITOR pattern that works with msys on windows...
r16901 $ rm editor.sh
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg log -r .
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 changeset: 1:ea22a388757c
Idan Kamara
commit: add option to amend the working dir parent...
r16458 tag: tip
user: foo
date: Thu Jan 01 00:00:01 1970 +0000
summary: another precious commit message
Moving bookmarks, preserve active bookmark:
$ hg book book1
$ hg book book2
$ hg ci --amend -m 'move bookmarks'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/ea22a388757c-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg book
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 book1 1:6cec5aa930e2
* book2 1:6cec5aa930e2
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ echo a >> a
$ hg ci --amend -m 'move bookmarks'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/6cec5aa930e2-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg book
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 book1 1:48bb6e53a15f
* book2 1:48bb6e53a15f
Idan Kamara
commit: add option to amend the working dir parent...
r16458
$ echo '[defaults]' >> $HGRCPATH
$ echo "commit=-d '0 0'" >> $HGRCPATH
Moving branches:
$ hg branch foo
marked working directory as branch foo
(branches are permanent and global, did you want a bookmark?)
$ echo a >> a
$ hg ci -m 'branch foo'
$ hg branch default -f
marked working directory as branch default
(branches are permanent and global, did you want a bookmark?)
$ hg ci --amend -m 'back to default'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/8ac881fbf49d-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg branches
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 default 2:ce12b0b57d46
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Close branch:
$ hg up -q 0
$ echo b >> b
$ hg branch foo
marked working directory as branch foo
(branches are permanent and global, did you want a bookmark?)
$ hg ci -Am 'fork'
adding b
$ echo b >> b
$ hg ci -mb
$ hg ci --amend --close-branch -m 'closing branch foo'
Mads Kiilerich
tests: glob the remaining 'saved backup bundle to' to prepare for windows
r16900 saved backup bundle to $TESTTMP/.hg/strip-backup/c962248fa264-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Same thing, different code path:
$ echo b >> b
$ hg ci -m 'reopen branch'
reopening closed branch head 4
$ echo b >> b
$ hg ci --amend --close-branch
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/027371728205-amend-backup.hg (glob)
Idan Kamara
commit: add option to amend the working dir parent...
r16458 $ hg branches
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 default 2:ce12b0b57d46
Idan Kamara
commit: add option to amend the working dir parent...
r16458
Refuse to amend merges:
$ hg up -q default
$ hg merge foo
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg ci --amend
abort: cannot amend while merging
[255]
$ hg ci -m 'merge'
$ hg ci --amend
abort: cannot amend merge changesets
[255]
Follow copies/renames:
$ hg mv b c
$ hg ci -m 'b -> c'
$ hg mv c d
$ hg ci --amend -m 'b -> d'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/b8c6eac7f12e-amend-backup.hg (glob)
Mads Kiilerich
tests: ^ must be quoted when used on solaris sh...
r16483 $ hg st --rev '.^' --copies d
Idan Kamara
commit: add option to amend the working dir parent...
r16458 A d
b
$ hg cp d e
$ hg ci -m 'e = d'
$ hg cp e f
$ hg ci --amend -m 'f = d'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/7f9761d65613-amend-backup.hg (glob)
Mads Kiilerich
tests: ^ must be quoted when used on solaris sh...
r16483 $ hg st --rev '.^' --copies f
Idan Kamara
commit: add option to amend the working dir parent...
r16458 A f
d
Patrick Mezard
test-commit-amend: exhibit an --amend weirdness...
r16552 $ mv f f.orig
$ hg rm -A f
$ hg ci -m removef
$ hg cp a f
$ mv f.orig f
$ hg ci --amend -m replacef
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/9e8c5f7e3d95-amend-backup.hg (glob)
Patrick Mezard
test-commit-amend: exhibit an --amend weirdness...
r16552 $ hg st --change . --copies
$ hg log -r . --template "{file_copies}\n"
Patrick Mezard
amend: fix copy records handling (issue3410)...
r16553
Move added file (issue3410):
$ echo g >> g
$ hg ci -Am g
adding g
$ hg mv g h
$ hg ci --amend
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/24aa8eacce2b-amend-backup.hg (glob)
Patrick Mezard
amend: fix copy records handling (issue3410)...
r16553 $ hg st --change . --copies h
A h
$ hg log -r . --template "{file_copies}\n"
Patrick Mezard
test-commit-amend: exhibit an --amend weirdness...
r16552
Idan Kamara
commit: add option to amend the working dir parent...
r16458 Can't rollback an amend:
$ hg rollback
no rollback information available
[1]
Idan Kamara
amend: preserve extra dict (issue3430)
r16630
Preserve extra dict (issue3430):
$ hg branch a
marked working directory as branch a
(branches are permanent and global, did you want a bookmark?)
$ echo a >> a
$ hg ci -ma
$ hg ci --amend -m "a'"
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/3837aa2a2fdb-amend-backup.hg (glob)
Idan Kamara
amend: preserve extra dict (issue3430)
r16630 $ hg log -r . --template "{branch}\n"
a
$ hg ci --amend -m "a''"
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/c05c06be7514-amend-backup.hg (glob)
Idan Kamara
amend: preserve extra dict (issue3430)
r16630 $ hg log -r . --template "{branch}\n"
a
Also preserve other entries in the dict that are in the old commit,
first graft something so there's an additional entry:
$ hg up 0 -q
$ echo z > z
$ hg ci -Am 'fork'
adding z
created new head
$ hg up 11
5 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ hg graft 12
grafting revision 12
$ hg ci --amend -m 'graft amend'
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 saved backup bundle to $TESTTMP/.hg/strip-backup/bd010aea3f39-amend-backup.hg (glob)
Idan Kamara
amend: preserve extra dict (issue3430)
r16630 $ hg log -r . --debug | grep extra
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 extra: amend_source=bd010aea3f39f3fb2a2f884b9ccb0471cd77398e
Idan Kamara
amend: preserve extra dict (issue3430)
r16630 extra: branch=a
extra: source=2647734878ef0236dda712fae9c1651cf694ea8a
Pierre-Yves David
amend: preserve phase of amended revision (issue3602)...
r17461
Preserve phase
$ hg phase '.^::.'
11: draft
13: draft
$ hg phase --secret --force .
$ hg phase '.^::.'
11: draft
13: secret
$ hg commit --amend -m 'amend for phase' -q
$ hg phase '.^::.'
11: draft
13: secret
Pierre-Yves David
amend: add obsolete support...
r17475 Test amend with obsolete
---------------------------
Enable obsolete
$ cat > ${TESTTMP}/obs.py << EOF
> import mercurial.obsolete
> mercurial.obsolete._enabled = True
> EOF
$ echo '[extensions]' >> $HGRCPATH
$ echo "obs=${TESTTMP}/obs.py" >> $HGRCPATH
Amend with no files changes
$ hg id -n
13
$ hg ci --amend -m 'babar'
$ hg id -n
14
$ hg log -Gl 3 --style=compact
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 @ 14[tip]:11 b650e6ee8614 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | babar
|
| o 12:0 2647734878ef 1970-01-01 00:00 +0000 test
| | fork
| |
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 o | 11 3334b7925910 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | | a''
| |
$ hg log -Gl 4 --hidden --style=compact
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 @ 14[tip]:11 b650e6ee8614 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | babar
|
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 | x 13:11 68ff8ff97044 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 |/ amend for phase
|
| o 12:0 2647734878ef 1970-01-01 00:00 +0000 test
| | fork
| |
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 o | 11 3334b7925910 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | | a''
| |
Amend with files changes
(note: the extra commit over 15 is a temporary junk I would be happy to get
ride of)
$ echo 'babar' >> a
$ hg commit --amend
$ hg log -Gl 6 --hidden --style=compact
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 @ 16[tip]:11 9f9e9bccf56c 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | babar
|
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 | x 15 90fef497c56f 1970-01-01 00:00 +0000 test
| | temporary amend commit for b650e6ee8614
Pierre-Yves David
amend: add obsolete support...
r17475 | |
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 | x 14:11 b650e6ee8614 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 |/ babar
|
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 | x 13:11 68ff8ff97044 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 |/ amend for phase
|
| o 12:0 2647734878ef 1970-01-01 00:00 +0000 test
| | fork
| |
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 o | 11 3334b7925910 1970-01-01 00:00 +0000 test
Pierre-Yves David
amend: add obsolete support...
r17475 | | a''
| |
Pierre-Yves David
amend: add noise in extra to avoid creating obsolescence cycle (issue3664)...
r17811 Test that amend does not make it easy to create obsoletescence cycle
---------------------------------------------------------------------
$ hg id -r 14
b650e6ee8614 (a)
$ hg revert -ar 14
reverting a
$ hg commit --amend
$ hg id
b99e5df575f7 (a) tip
Pierre-Yves David
amend: allow amend of non-head when obsolete is enabled...
r18163
Test ui.prevent-unstable
---------------------------------------------------------------------
$ hg up '.^'
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ echo 'b' >> a
$ hg log --style compact -r 'children(.)'
18[tip]:11 b99e5df575f7 1970-01-01 00:00 +0000 test
babar
$ hg commit --amend
$ hg log -r 'unstable()'
changeset: 18:b99e5df575f7
branch: a
parent: 11:3334b7925910
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: babar