test-bookmarks-pushpull.t
601 lines
| 15.9 KiB
| text/troff
|
Tads3Lexer
/ tests / test-bookmarks-pushpull.t
Matt Mackall
|
r22046 | #require serve | ||
Mads Kiilerich
|
r15446 | |||
Pierre-Yves David
|
r17551 | $ cat << EOF >> $HGRCPATH | ||
Pierre-Yves David
|
r17864 | > [ui] | ||
> logtemplate={rev}:{node|short} {desc|firstline} | ||||
Pierre-Yves David
|
r17551 | > [phases] | ||
> publish=False | ||||
Durham Goode
|
r22955 | > [experimental] | ||
> evolution=createmarkers,exchange | ||||
Pierre-Yves David
|
r17551 | > EOF | ||
Will Maier
|
r12303 | initialize | ||
$ hg init a | ||||
$ cd a | ||||
$ echo 'test' > test | ||||
$ hg commit -Am'test' | ||||
adding test | ||||
set bookmarks | ||||
$ hg bookmark X | ||||
$ hg bookmark Y | ||||
$ hg bookmark Z | ||||
import bookmark by name | ||||
$ hg init ../b | ||||
$ cd ../b | ||||
Matt Mackall
|
r12969 | $ hg book Y | ||
$ hg book | ||||
* Y -1:000000000000 | ||||
Will Maier
|
r12303 | $ hg pull ../a | ||
pulling from ../a | ||||
requesting all changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
Mads Kiilerich
|
r18363 | adding remote bookmark X | ||
David Soria Parra
|
r13662 | updating bookmark Y | ||
Levi Bard
|
r16697 | adding remote bookmark Z | ||
Will Maier
|
r12303 | (run 'hg update' to get a working copy) | ||
$ hg bookmarks | ||||
Levi Bard
|
r16697 | X 0:4e3505fd9583 | ||
Kevin Bullock
|
r18479 | * Y 0:4e3505fd9583 | ||
Levi Bard
|
r16697 | Z 0:4e3505fd9583 | ||
Matt Mackall
|
r12969 | $ hg debugpushkey ../a namespaces | ||
bookmarks | ||||
namespaces | ||||
Pierre-Yves David
|
r17551 | obsolete | ||
Mads Kiilerich <mads at kiilerich.com>
|
r18255 | phases | ||
Matt Mackall
|
r12969 | $ hg debugpushkey ../a bookmarks | ||
Mads Kiilerich <mads at kiilerich.com>
|
r18255 | X 4e3505fd95835d721066b76e75dbb8cc554d7f77 | ||
Matt Mackall
|
r12969 | Y 4e3505fd95835d721066b76e75dbb8cc554d7f77 | ||
Z 4e3505fd95835d721066b76e75dbb8cc554d7f77 | ||||
Pierre-Yves David
|
r23199 | |||
Mads Kiilerich
|
r23543 | delete the bookmark to re-pull it | ||
Pierre-Yves David
|
r23199 | |||
$ hg book -d X | ||||
$ hg pull -B X ../a | ||||
pulling from ../a | ||||
no changes found | ||||
adding remote bookmark X | ||||
finally no-op pull | ||||
Will Maier
|
r12303 | $ hg pull -B X ../a | ||
pulling from ../a | ||||
no changes found | ||||
$ hg bookmark | ||||
David Soria Parra
|
r13388 | X 0:4e3505fd9583 | ||
Kevin Bullock
|
r18479 | * Y 0:4e3505fd9583 | ||
Levi Bard
|
r16697 | Z 0:4e3505fd9583 | ||
Will Maier
|
r12303 | |||
export bookmark by name | ||||
$ hg bookmark W | ||||
$ hg bookmark foo | ||||
$ hg bookmark foobar | ||||
$ hg push -B W ../a | ||||
pushing to ../a | ||||
searching for changes | ||||
no changes found | ||||
exporting bookmark W | ||||
Matt Mackall
|
r16038 | [1] | ||
Will Maier
|
r12303 | $ hg -R ../a bookmarks | ||
David Soria Parra
|
r13388 | W -1:000000000000 | ||
Will Maier
|
r12303 | X 0:4e3505fd9583 | ||
David Soria Parra
|
r13388 | Y 0:4e3505fd9583 | ||
Will Maier
|
r12303 | * Z 0:4e3505fd9583 | ||
Matt Mackall
|
r12969 | delete a remote bookmark | ||
$ hg book -d W | ||||
$ hg push -B W ../a | ||||
Matt Mackall
|
r13368 | pushing to ../a | ||
searching for changes | ||||
no changes found | ||||
Matt Mackall
|
r12969 | deleting remote bookmark W | ||
Matt Mackall
|
r16038 | [1] | ||
Matt Mackall
|
r12969 | |||
Will Maier
|
r12303 | push/pull name that doesn't exist | ||
$ hg push -B badname ../a | ||||
Matt Mackall
|
r13368 | pushing to ../a | ||
searching for changes | ||||
Pierre-Yves David
|
r22651 | bookmark badname does not exist on the local or remote repository! | ||
Matt Mackall
|
r13368 | no changes found | ||
Matt Mackall
|
r12316 | [2] | ||
Will Maier
|
r12303 | $ hg pull -B anotherbadname ../a | ||
Matt Mackall
|
r13368 | pulling from ../a | ||
Will Maier
|
r12303 | abort: remote bookmark anotherbadname not found! | ||
Matt Mackall
|
r12316 | [255] | ||
Matt Mackall
|
r12969 | |||
divergent bookmarks | ||||
$ cd ../a | ||||
$ echo c1 > f1 | ||||
$ hg ci -Am1 | ||||
adding f1 | ||||
David M. Carr
|
r17770 | $ hg book -f @ | ||
Matt Mackall
|
r12969 | $ hg book -f X | ||
$ hg book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
David Soria Parra
|
r13388 | * X 1:0d2164f0ce0d | ||
Matt Mackall
|
r12969 | Y 0:4e3505fd9583 | ||
Z 1:0d2164f0ce0d | ||||
$ cd ../b | ||||
$ hg up | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
Kevin Bullock
|
r16010 | updating bookmark foobar | ||
Matt Mackall
|
r12969 | $ echo c2 > f2 | ||
$ hg ci -Am2 | ||||
adding f2 | ||||
Kevin Bullock
|
r18470 | $ hg book -if @ | ||
$ hg book -if X | ||||
Matt Mackall
|
r12969 | $ hg book | ||
David M. Carr
|
r17770 | @ 1:9b140be10808 | ||
Kevin Bullock
|
r18470 | X 1:9b140be10808 | ||
Matt Mackall
|
r12969 | Y 0:4e3505fd9583 | ||
Levi Bard
|
r16697 | Z 0:4e3505fd9583 | ||
Matt Mackall
|
r12969 | foo -1:000000000000 | ||
Kevin Bullock
|
r18470 | * foobar 1:9b140be10808 | ||
Matt Mackall
|
r12969 | |||
Matt Mackall
|
r15614 | $ hg pull --config paths.foo=../a foo | ||
Adrian Buehlmann
|
r17021 | pulling from $TESTTMP/a (glob) | ||
Matt Mackall
|
r12969 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
Mads Kiilerich
|
r18363 | divergent bookmark @ stored as @foo | ||
Matt Mackall
|
r15614 | divergent bookmark X stored as X@foo | ||
Levi Bard
|
r16697 | updating bookmark Z | ||
Matt Mackall
|
r12969 | (run 'hg heads' to see heads, 'hg merge' to merge) | ||
$ hg book | ||||
David M. Carr
|
r17770 | @ 1:9b140be10808 | ||
@foo 2:0d2164f0ce0d | ||||
Kevin Bullock
|
r18470 | X 1:9b140be10808 | ||
Matt Mackall
|
r15614 | X@foo 2:0d2164f0ce0d | ||
Matt Mackall
|
r12969 | Y 0:4e3505fd9583 | ||
Levi Bard
|
r16697 | Z 2:0d2164f0ce0d | ||
Matt Mackall
|
r12969 | foo -1:000000000000 | ||
Kevin Bullock
|
r18470 | * foobar 1:9b140be10808 | ||
FUJIWARA Katsunori
|
r24353 | |||
(test that too many divergence of bookmark) | ||||
$ cat > $TESTTMP/seq.py <<EOF | ||||
> import sys | ||||
> for i in xrange(*[int(a) for a in sys.argv[1:]]): | ||||
> print i | ||||
> EOF | ||||
$ python $TESTTMP/seq.py 1 100 | while read i; do hg bookmarks -r 000000000000 "X@${i}"; done | ||||
$ hg pull ../a | ||||
pulling from ../a | ||||
searching for changes | ||||
no changes found | ||||
warning: failed to assign numbered name to divergent bookmark X | ||||
divergent bookmark @ stored as @1 | ||||
$ hg bookmarks | grep '^ X' | grep -v ':000000000000' | ||||
X 1:9b140be10808 | ||||
X@foo 2:0d2164f0ce0d | ||||
FUJIWARA Katsunori
|
r24355 | |||
(test that remotely diverged bookmarks are reused if they aren't changed) | ||||
$ hg bookmarks | grep '^ @' | ||||
@ 1:9b140be10808 | ||||
@1 2:0d2164f0ce0d | ||||
@foo 2:0d2164f0ce0d | ||||
$ hg pull ../a | ||||
pulling from ../a | ||||
searching for changes | ||||
no changes found | ||||
warning: failed to assign numbered name to divergent bookmark X | ||||
divergent bookmark @ stored as @1 | ||||
$ hg bookmarks | grep '^ @' | ||||
@ 1:9b140be10808 | ||||
@1 2:0d2164f0ce0d | ||||
@foo 2:0d2164f0ce0d | ||||
FUJIWARA Katsunori
|
r24353 | $ python $TESTTMP/seq.py 1 100 | while read i; do hg bookmarks -d "X@${i}"; done | ||
$ hg bookmarks -d "@1" | ||||
Matt Mackall
|
r12969 | $ hg push -f ../a | ||
pushing to ../a | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
$ hg -R ../a book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
David Soria Parra
|
r13388 | * X 1:0d2164f0ce0d | ||
Matt Mackall
|
r12969 | Y 0:4e3505fd9583 | ||
Z 1:0d2164f0ce0d | ||||
Mads Kiilerich
|
r23543 | explicit pull should overwrite the local version (issue4439) | ||
Pierre-Yves David
|
r23199 | |||
$ hg pull --config paths.foo=../a foo -B X | ||||
pulling from $TESTTMP/a (glob) | ||||
no changes found | ||||
divergent bookmark @ stored as @foo | ||||
importing bookmark X | ||||
reinstall state for further testing: | ||||
$ hg book -fr 9b140be10808 X | ||||
Kevin Bullock
|
r18495 | revsets should not ignore divergent bookmarks | ||
$ hg bookmark -fr 1 Z | ||||
$ hg log -r 'bookmark()' --template '{rev}:{node|short} {bookmarks}\n' | ||||
0:4e3505fd9583 Y | ||||
1:9b140be10808 @ X Z foobar | ||||
2:0d2164f0ce0d @foo X@foo | ||||
$ hg log -r 'bookmark("X@foo")' --template '{rev}:{node|short} {bookmarks}\n' | ||||
2:0d2164f0ce0d @foo X@foo | ||||
$ hg log -r 'bookmark("re:X@foo")' --template '{rev}:{node|short} {bookmarks}\n' | ||||
2:0d2164f0ce0d @foo X@foo | ||||
Levi Bard
|
r16835 | update a remote bookmark from a non-head to a head | ||
$ hg up -q Y | ||||
$ echo c3 > f2 | ||||
$ hg ci -Am3 | ||||
adding f2 | ||||
created new head | ||||
$ hg push ../a | ||||
pushing to ../a | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
updating bookmark Y | ||||
$ hg -R ../a book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
Levi Bard
|
r16835 | * X 1:0d2164f0ce0d | ||
Y 3:f6fc62dde3c0 | ||||
Z 1:0d2164f0ce0d | ||||
Siddharth Agarwal
|
r18851 | update a bookmark in the middle of a client pulling changes | ||
$ cd .. | ||||
$ hg clone -q a pull-race | ||||
$ hg clone -q pull-race pull-race2 | ||||
$ cd pull-race | ||||
$ hg up -q Y | ||||
$ echo c4 > f2 | ||||
$ hg ci -Am4 | ||||
$ echo c5 > f3 | ||||
$ cat <<EOF > .hg/hgrc | ||||
> [hooks] | ||||
> outgoing.makecommit = hg ci -Am5; echo committed in pull-race | ||||
> EOF | ||||
$ cd ../pull-race2 | ||||
$ hg pull | ||||
pulling from $TESTTMP/pull-race (glob) | ||||
searching for changes | ||||
adding changesets | ||||
adding f3 | ||||
committed in pull-race | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
updating bookmark Y | ||||
(run 'hg update' to get a working copy) | ||||
$ hg book | ||||
* @ 1:0d2164f0ce0d | ||||
X 1:0d2164f0ce0d | ||||
Y 4:b0a5eff05604 | ||||
Z 1:0d2164f0ce0d | ||||
$ cd ../b | ||||
Levi Bard
|
r16835 | diverging a remote bookmark fails | ||
$ hg up -q 4e3505fd9583 | ||||
$ echo c4 > f2 | ||||
$ hg ci -Am4 | ||||
adding f2 | ||||
created new head | ||||
Pierre-Yves David
|
r17864 | $ echo c5 > f2 | ||
$ hg ci -Am5 | ||||
$ hg log -G | ||||
@ 5:c922c0139ca0 5 | ||||
| | ||||
o 4:4efff6d98829 4 | ||||
| | ||||
| o 3:f6fc62dde3c0 3 | ||||
|/ | ||||
| o 2:0d2164f0ce0d 1 | ||||
|/ | ||||
| o 1:9b140be10808 2 | ||||
|/ | ||||
o 0:4e3505fd9583 test | ||||
Levi Bard
|
r16835 | $ hg book -f Y | ||
Sune Foldager
|
r17043 | |||
$ cat <<EOF > ../a/.hg/hgrc | ||||
> [web] | ||||
> push_ssl = false | ||||
> allow_push = * | ||||
> EOF | ||||
$ hg -R ../a serve -p $HGPORT2 -d --pid-file=../hg2.pid | ||||
$ cat ../hg2.pid >> $DAEMON_PIDS | ||||
$ hg push http://localhost:$HGPORT2/ | ||||
pushing to http://localhost:$HGPORT2/ | ||||
Levi Bard
|
r16835 | searching for changes | ||
Stephen Lee
|
r21580 | abort: push creates new remote head c922c0139ca0 with bookmark 'Y'! | ||
FUJIWARA Katsunori
|
r19934 | (merge or see "hg help push" for details about pushing new heads) | ||
Levi Bard
|
r16835 | [255] | ||
$ hg -R ../a book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
Levi Bard
|
r16835 | * X 1:0d2164f0ce0d | ||
Y 3:f6fc62dde3c0 | ||||
Z 1:0d2164f0ce0d | ||||
Pierre-Yves David
|
r17551 | |||
Unrelated marker does not alter the decision | ||||
$ hg debugobsolete aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb | ||||
$ hg push http://localhost:$HGPORT2/ | ||||
pushing to http://localhost:$HGPORT2/ | ||||
searching for changes | ||||
Stephen Lee
|
r21580 | abort: push creates new remote head c922c0139ca0 with bookmark 'Y'! | ||
FUJIWARA Katsunori
|
r19934 | (merge or see "hg help push" for details about pushing new heads) | ||
Pierre-Yves David
|
r17551 | [255] | ||
$ hg -R ../a book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
Pierre-Yves David
|
r17551 | * X 1:0d2164f0ce0d | ||
Y 3:f6fc62dde3c0 | ||||
Z 1:0d2164f0ce0d | ||||
Update to a successor works | ||||
$ hg id --debug -r 3 | ||||
f6fc62dde3c0771e29704af56ba4d8af77abcc2f | ||||
$ hg id --debug -r 4 | ||||
Pierre-Yves David
|
r17864 | 4efff6d98829d9c824c621afd6e3f01865f5439f | ||
$ hg id --debug -r 5 | ||||
c922c0139ca03858f655e4a2af4dd02796a63969 tip Y | ||||
Pierre-Yves David
|
r17865 | $ hg debugobsolete f6fc62dde3c0771e29704af56ba4d8af77abcc2f cccccccccccccccccccccccccccccccccccccccc | ||
$ hg debugobsolete cccccccccccccccccccccccccccccccccccccccc 4efff6d98829d9c824c621afd6e3f01865f5439f | ||||
Pierre-Yves David
|
r17551 | $ hg push http://localhost:$HGPORT2/ | ||
pushing to http://localhost:$HGPORT2/ | ||||
searching for changes | ||||
remote: adding changesets | ||||
remote: adding manifests | ||||
remote: adding file changes | ||||
Pierre-Yves David
|
r17864 | remote: added 2 changesets with 2 changes to 1 files (+1 heads) | ||
Pierre-Yves David
|
r17551 | updating bookmark Y | ||
$ hg -R ../a book | ||||
David M. Carr
|
r17770 | @ 1:0d2164f0ce0d | ||
Pierre-Yves David
|
r17551 | * X 1:0d2164f0ce0d | ||
Pierre-Yves David
|
r17864 | Y 5:c922c0139ca0 | ||
Pierre-Yves David
|
r17551 | Z 1:0d2164f0ce0d | ||
Matt Mackall
|
r12969 | hgweb | ||
$ cat <<EOF > .hg/hgrc | ||||
> [web] | ||||
> push_ssl = false | ||||
> allow_push = * | ||||
> EOF | ||||
$ hg serve -p $HGPORT -d --pid-file=../hg.pid -E errors.log | ||||
$ cat ../hg.pid >> $DAEMON_PIDS | ||||
$ cd ../a | ||||
Mads Kiilerich
|
r17345 | $ hg debugpushkey http://localhost:$HGPORT/ namespaces | ||
Matt Mackall
|
r12969 | bookmarks | ||
namespaces | ||||
Pierre-Yves David
|
r17551 | obsolete | ||
Mads Kiilerich <mads at kiilerich.com>
|
r18255 | phases | ||
Matt Mackall
|
r12969 | $ hg debugpushkey http://localhost:$HGPORT/ bookmarks | ||
David M. Carr
|
r17770 | @ 9b140be1080824d768c5a4691a564088eede71f9 | ||
Mads Kiilerich <mads at kiilerich.com>
|
r18255 | X 9b140be1080824d768c5a4691a564088eede71f9 | ||
Y c922c0139ca03858f655e4a2af4dd02796a63969 | ||||
Kevin Bullock
|
r18495 | Z 9b140be1080824d768c5a4691a564088eede71f9 | ||
David M. Carr
|
r17770 | foo 0000000000000000000000000000000000000000 | ||
foobar 9b140be1080824d768c5a4691a564088eede71f9 | ||||
Matt Mackall
|
r12969 | $ hg out -B http://localhost:$HGPORT/ | ||
comparing with http://localhost:$HGPORT/ | ||||
searching for changed bookmarks | ||||
Levi Bard
|
r16697 | no changed bookmarks found | ||
[1] | ||||
Matt Mackall
|
r12969 | $ hg push -B Z http://localhost:$HGPORT/ | ||
pushing to http://localhost:$HGPORT/ | ||||
searching for changes | ||||
no changes found | ||||
Pierre-Yves David
|
r22651 | updating bookmark Z | ||
Matt Mackall
|
r16038 | [1] | ||
Matt Mackall
|
r12969 | $ hg book -d Z | ||
$ hg in -B http://localhost:$HGPORT/ | ||||
comparing with http://localhost:$HGPORT/ | ||||
searching for changed bookmarks | ||||
Z 0d2164f0ce0d | ||||
foo 000000000000 | ||||
Matt Mackall
|
r15935 | foobar 9b140be10808 | ||
Matt Mackall
|
r12969 | $ hg pull -B Z http://localhost:$HGPORT/ | ||
pulling from http://localhost:$HGPORT/ | ||||
no changes found | ||||
David M. Carr
|
r17770 | divergent bookmark @ stored as @1 | ||
Mads Kiilerich
|
r18363 | divergent bookmark X stored as X@1 | ||
adding remote bookmark Z | ||||
David M. Carr
|
r17770 | adding remote bookmark foo | ||
Levi Bard
|
r16697 | adding remote bookmark foobar | ||
David Soria Parra
|
r13604 | $ hg clone http://localhost:$HGPORT/ cloned-bookmarks | ||
requesting all changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
Pierre-Yves David
|
r17864 | added 5 changesets with 5 changes to 3 files (+2 heads) | ||
Adrian Buehlmann
|
r17882 | updating to bookmark @ | ||
David Soria Parra
|
r13604 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
$ hg -R cloned-bookmarks bookmarks | ||||
Thomas Arendsen Hein
|
r17870 | * @ 1:9b140be10808 | ||
David Soria Parra
|
r13604 | X 1:9b140be10808 | ||
Pierre-Yves David
|
r17864 | Y 4:c922c0139ca0 | ||
David Soria Parra
|
r13604 | Z 2:0d2164f0ce0d | ||
foo -1:000000000000 | ||||
Matt Mackall
|
r15935 | foobar 1:9b140be10808 | ||
Mads Kiilerich
|
r17346 | |||
Augie Fackler
|
r17189 | $ cd .. | ||
Pushing a bookmark should only push the changes required by that | ||||
bookmark, not all outgoing changes: | ||||
$ hg clone http://localhost:$HGPORT/ addmarks | ||||
requesting all changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
Pierre-Yves David
|
r17864 | added 5 changesets with 5 changes to 3 files (+2 heads) | ||
Adrian Buehlmann
|
r17882 | updating to bookmark @ | ||
Augie Fackler
|
r17189 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
$ cd addmarks | ||||
$ echo foo > foo | ||||
$ hg add foo | ||||
$ hg commit -m 'add foo' | ||||
$ echo bar > bar | ||||
$ hg add bar | ||||
$ hg commit -m 'add bar' | ||||
$ hg co "tip^" | ||||
0 files updated, 0 files merged, 1 files removed, 0 files unresolved | ||||
Siddharth Agarwal
|
r21404 | (leaving bookmark @) | ||
Augie Fackler
|
r17189 | $ hg book add-foo | ||
$ hg book -r tip add-bar | ||||
Note: this push *must* push only a single changeset, as that's the point | ||||
of this test. | ||||
Pierre-Yves David
|
r17548 | $ hg push -B add-foo --traceback | ||
Augie Fackler
|
r17189 | pushing to http://localhost:$HGPORT/ | ||
searching for changes | ||||
remote: adding changesets | ||||
remote: adding manifests | ||||
remote: adding file changes | ||||
remote: added 1 changesets with 1 changes to 1 files | ||||
exporting bookmark add-foo | ||||
Matt Mackall
|
r12969 | |||
Stephen Lee
|
r20184 | pushing a new bookmark on a new head does not require -f if -B is specified | ||
$ hg up -q X | ||||
$ hg book W | ||||
$ echo c5 > f2 | ||||
$ hg ci -Am5 | ||||
created new head | ||||
$ hg push -B W | ||||
pushing to http://localhost:$HGPORT/ | ||||
searching for changes | ||||
remote: adding changesets | ||||
remote: adding manifests | ||||
remote: adding file changes | ||||
remote: added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
exporting bookmark W | ||||
$ hg -R ../b id -r W | ||||
cc978a373a53 tip W | ||||
Mads Kiilerich
|
r16913 | $ cd .. | ||
Gregory Szorc
|
r23082 | |||
pushing an unchanged bookmark should result in no changes | ||||
$ hg init unchanged-a | ||||
$ hg init unchanged-b | ||||
$ cd unchanged-a | ||||
$ echo initial > foo | ||||
$ hg commit -A -m initial | ||||
adding foo | ||||
$ hg bookmark @ | ||||
$ hg push -B @ ../unchanged-b | ||||
pushing to ../unchanged-b | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
exporting bookmark @ | ||||
$ hg push -B @ ../unchanged-b | ||||
pushing to ../unchanged-b | ||||
searching for changes | ||||
no changes found | ||||
[1] | ||||
Pierre-Yves David
|
r23416 | |||
Check hook preventing push (issue4455) | ||||
====================================== | ||||
$ hg bookmarks | ||||
* @ 0:55482a6fb4b1 | ||||
$ hg log -G | ||||
@ 0:55482a6fb4b1 initial | ||||
$ hg init ../issue4455-dest | ||||
$ hg push ../issue4455-dest # changesets only | ||||
pushing to ../issue4455-dest | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files | ||||
$ cat >> .hg/hgrc << EOF | ||||
> [paths] | ||||
> local=../issue4455-dest/ | ||||
> ssh=ssh://user@dummy/issue4455-dest | ||||
> http=http://localhost:$HGPORT/ | ||||
> [ui] | ||||
> ssh=python "$TESTDIR/dummyssh" | ||||
> EOF | ||||
$ cat >> ../issue4455-dest/.hg/hgrc << EOF | ||||
> [hooks] | ||||
> prepushkey=false | ||||
> [web] | ||||
> push_ssl = false | ||||
> allow_push = * | ||||
> EOF | ||||
$ "$TESTDIR/killdaemons.py" $DAEMON_PIDS | ||||
$ hg -R ../issue4455-dest serve -p $HGPORT -d --pid-file=../issue4455.pid -E ../issue4455-error.log | ||||
$ cat ../issue4455.pid >> $DAEMON_PIDS | ||||
Local push | ||||
---------- | ||||
$ hg push -B @ local | ||||
pushing to $TESTTMP/issue4455-dest (glob) | ||||
searching for changes | ||||
no changes found | ||||
pushkey-abort: prepushkey hook exited with status 1 | ||||
exporting bookmark @ failed! | ||||
[1] | ||||
$ hg -R ../issue4455-dest/ bookmarks | ||||
no bookmarks set | ||||
Using ssh | ||||
--------- | ||||
$ hg push -B @ ssh | ||||
pushing to ssh://user@dummy/issue4455-dest | ||||
searching for changes | ||||
no changes found | ||||
remote: pushkey-abort: prepushkey hook exited with status 1 | ||||
exporting bookmark @ failed! | ||||
[1] | ||||
$ hg -R ../issue4455-dest/ bookmarks | ||||
no bookmarks set | ||||
Using http | ||||
---------- | ||||
$ hg push -B @ http | ||||
pushing to http://localhost:$HGPORT/ | ||||
searching for changes | ||||
no changes found | ||||
remote: pushkey-abort: prepushkey hook exited with status 1 | ||||
exporting bookmark @ failed! | ||||
[1] | ||||
$ hg -R ../issue4455-dest/ bookmarks | ||||
no bookmarks set | ||||