test-pull-update.t
248 lines
| 6.1 KiB
| text/troff
|
Tads3Lexer
/ tests / test-pull-update.t
Adrian Buehlmann
|
r12279 | $ hg init t | ||
$ cd t | ||||
$ echo 1 > foo | ||||
$ hg ci -Am m | ||||
adding foo | ||||
$ cd .. | ||||
$ hg clone t tt | ||||
updating to branch default | ||||
1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ cd tt | ||||
$ echo 1.1 > foo | ||||
$ hg ci -Am m | ||||
$ cd ../t | ||||
$ echo 1.2 > foo | ||||
$ hg ci -Am m | ||||
Martin von Zweigbergk
|
r31167 | Should respect config to disable dirty update | ||
$ hg co -qC 0 | ||||
$ echo 2 > foo | ||||
Augie Fackler
|
r34706 | $ hg --config commands.update.check=abort pull -u ../tt | ||
Martin von Zweigbergk
|
r31167 | pulling from ../tt | ||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
Denis Laxalde
|
r34662 | new changesets 107cefe13e42 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
Martin von Zweigbergk
|
r31167 | abort: uncommitted changes | ||
Martin von Zweigbergk
|
r46444 | [20] | ||
Martin von Zweigbergk
|
r31167 | $ hg --config extensions.strip= strip --no-backup tip | ||
$ hg co -qC tip | ||||
Pierre-Yves David
|
r28065 | Should not update to the other topological branch: | ||
Adrian Buehlmann
|
r12279 | |||
$ hg pull -u ../tt | ||||
pulling from ../tt | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
Denis Laxalde
|
r34662 | new changesets 107cefe13e42 | ||
Pierre-Yves David
|
r28065 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Pulkit Goyal
|
r32698 | updated to "800c91d5bfc1: m" | ||
Pierre-Yves David
|
r28065 | 1 other heads for branch "default" | ||
Adrian Buehlmann
|
r12279 | |||
$ cd ../tt | ||||
Pierre-Yves David
|
r28065 | Should not update to the other branch: | ||
Adrian Buehlmann
|
r12279 | |||
$ hg pull -u ../t | ||||
pulling from ../t | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (+1 heads) | ||||
Denis Laxalde
|
r34662 | new changesets 800c91d5bfc1 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
Pierre-Yves David
|
r28065 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
Pulkit Goyal
|
r32698 | updated to "107cefe13e42: m" | ||
Pierre-Yves David
|
r28065 | 1 other heads for branch "default" | ||
Adrian Buehlmann
|
r12279 | |||
$ HGMERGE=true hg merge | ||||
merging foo | ||||
0 files updated, 1 files merged, 0 files removed, 0 files unresolved | ||||
(branch merge, don't forget to commit) | ||||
$ hg ci -mm | ||||
$ cd ../t | ||||
Should work: | ||||
$ hg pull -u ../tt | ||||
pulling from ../tt | ||||
searching for changes | ||||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 1 changesets with 1 changes to 1 files (-1 heads) | ||||
Denis Laxalde
|
r34662 | new changesets 483b76ad4309 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
Adrian Buehlmann
|
r12279 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
FUJIWARA Katsunori
|
r28273 | Similarity between "hg update" and "hg pull -u" in handling bookmark | ||
==================================================================== | ||||
Test that updating activates the bookmark, which matches with the | ||||
explicit destination of the update. | ||||
$ echo 4 >> foo | ||||
$ hg commit -m "#4" | ||||
$ hg bookmark active-after-pull | ||||
$ cd ../tt | ||||
(1) activating by --rev BOOKMARK | ||||
$ hg bookmark -f active-before-pull | ||||
$ hg bookmarks | ||||
* active-before-pull 3:483b76ad4309 | ||||
$ hg pull -u -r active-after-pull | ||||
Matt Harbison
|
r35394 | pulling from $TESTTMP/t | ||
FUJIWARA Katsunori
|
r28273 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
r43167 | adding remote bookmark active-after-pull | |||
FUJIWARA Katsunori
|
r28273 | added 1 changesets with 1 changes to 1 files | ||
Denis Laxalde
|
r34662 | new changesets f815b3da6163 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
FUJIWARA Katsunori
|
r28273 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
(activating bookmark active-after-pull) | ||||
$ hg parents -q | ||||
4:f815b3da6163 | ||||
$ hg bookmarks | ||||
* active-after-pull 4:f815b3da6163 | ||||
active-before-pull 3:483b76ad4309 | ||||
(discard pulled changes) | ||||
$ hg update -q 483b76ad4309 | ||||
$ hg rollback -q | ||||
(2) activating by URL#BOOKMARK | ||||
$ hg bookmark -f active-before-pull | ||||
$ hg bookmarks | ||||
* active-before-pull 3:483b76ad4309 | ||||
$ hg pull -u $TESTTMP/t#active-after-pull | ||||
Matt Harbison
|
r35394 | pulling from $TESTTMP/t | ||
FUJIWARA Katsunori
|
r28273 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
r43167 | adding remote bookmark active-after-pull | |||
FUJIWARA Katsunori
|
r28273 | added 1 changesets with 1 changes to 1 files | ||
Denis Laxalde
|
r34662 | new changesets f815b3da6163 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
FUJIWARA Katsunori
|
r28273 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
(activating bookmark active-after-pull) | ||||
$ hg parents -q | ||||
4:f815b3da6163 | ||||
$ hg bookmarks | ||||
* active-after-pull 4:f815b3da6163 | ||||
active-before-pull 3:483b76ad4309 | ||||
FUJIWARA Katsunori
|
r28274 | (discard pulled changes) | ||
$ hg update -q 483b76ad4309 | ||||
$ hg rollback -q | ||||
Test that updating deactivates current active bookmark, if the | ||||
destination of the update is explicitly specified, and it doesn't | ||||
Mads Kiilerich
|
r30332 | match with the name of any existing bookmarks. | ||
FUJIWARA Katsunori
|
r28274 | |||
$ cd ../t | ||||
$ hg bookmark -d active-after-pull | ||||
$ hg branch bar -q | ||||
$ hg commit -m "#5 (bar #1)" | ||||
$ cd ../tt | ||||
(1) deactivating by --rev REV | ||||
$ hg bookmark -f active-before-pull | ||||
$ hg bookmarks | ||||
* active-before-pull 3:483b76ad4309 | ||||
$ hg pull -u -r b5e4babfaaa7 | ||||
Matt Harbison
|
r35394 | pulling from $TESTTMP/t | ||
FUJIWARA Katsunori
|
r28274 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 2 changesets with 1 changes to 1 files | ||||
Denis Laxalde
|
r34662 | new changesets f815b3da6163:b5e4babfaaa7 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
FUJIWARA Katsunori
|
r28274 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
(leaving bookmark active-before-pull) | ||||
$ hg parents -q | ||||
5:b5e4babfaaa7 | ||||
$ hg bookmarks | ||||
active-before-pull 3:483b76ad4309 | ||||
(discard pulled changes) | ||||
$ hg update -q 483b76ad4309 | ||||
$ hg rollback -q | ||||
(2) deactivating by --branch BRANCH | ||||
$ hg bookmark -f active-before-pull | ||||
$ hg bookmarks | ||||
* active-before-pull 3:483b76ad4309 | ||||
$ hg pull -u -b bar | ||||
Matt Harbison
|
r35394 | pulling from $TESTTMP/t | ||
FUJIWARA Katsunori
|
r28274 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 2 changesets with 1 changes to 1 files | ||||
Denis Laxalde
|
r34662 | new changesets f815b3da6163:b5e4babfaaa7 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
FUJIWARA Katsunori
|
r28274 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
(leaving bookmark active-before-pull) | ||||
$ hg parents -q | ||||
5:b5e4babfaaa7 | ||||
$ hg bookmarks | ||||
active-before-pull 3:483b76ad4309 | ||||
(discard pulled changes) | ||||
$ hg update -q 483b76ad4309 | ||||
$ hg rollback -q | ||||
(3) deactivating by URL#ANOTHER-BRANCH | ||||
$ hg bookmark -f active-before-pull | ||||
$ hg bookmarks | ||||
* active-before-pull 3:483b76ad4309 | ||||
$ hg pull -u $TESTTMP/t#bar | ||||
Matt Harbison
|
r35394 | pulling from $TESTTMP/t | ||
FUJIWARA Katsunori
|
r28274 | searching for changes | ||
adding changesets | ||||
adding manifests | ||||
adding file changes | ||||
added 2 changesets with 1 changes to 1 files | ||||
Denis Laxalde
|
r34662 | new changesets f815b3da6163:b5e4babfaaa7 | ||
Boris Feld
|
r38268 | 1 local changesets published | ||
FUJIWARA Katsunori
|
r28274 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||
(leaving bookmark active-before-pull) | ||||
$ hg parents -q | ||||
5:b5e4babfaaa7 | ||||
$ hg bookmarks | ||||
active-before-pull 3:483b76ad4309 | ||||
Mads Kiilerich
|
r16913 | $ cd .. | ||