annotate tests/test-infinitepush-bundlestore.t @ 50793:1fbae268ecae

wrapfunction: use sysstr instead of bytes as argument in "sqlitestore" This is as valid and simpler, it will help us to eventually get ride of `safehasattr`.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 03 Feb 2023 04:27:17 +0100
parents 68c4f8f3c9f4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47587
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
1 #require no-reposimplestore no-chg
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
2
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
3 XXX-CHG this test hangs if `hg` is really `chg`. This was hidden by the use of
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
4 `alias hg=chg` by run-tests.py. With such alias removed, this test is revealed
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
5 buggy. This need to be resolved sooner than later.
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
6
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
7
be496e3489b9 tests: blacklist a handful of test with `rhg` or `chg`
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 42897
diff changeset
8 Testing infinipush extension and the confi options provided by it
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
9
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
10 Create an ondisk bundlestore in .hg/scratchbranches
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
11 $ . "$TESTDIR/library-infinitepush.sh"
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
12 $ cp $HGRCPATH $TESTTMP/defaulthgrc
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
13 $ setupcommon
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
14 $ mkcommit() {
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
15 > echo "$1" > "$1"
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
16 > hg add "$1"
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
17 > hg ci -m "$1"
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
18 > }
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
19 $ hg init repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
20 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
21 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
22 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
23 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
24 $ cd repo
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
25
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
26 Check that we can send a scratch on the server and it does not show there in
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
27 the history but is stored on disk
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
28 $ setupserver
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
29 $ cd ..
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
30 $ hg clone ssh://user@dummy/repo client -q
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
31 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
32 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
33 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
34 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
35 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
36 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
37 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
38 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
39 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
40 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
41 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
42 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
43 $ cd client
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
44 $ mkcommit initialcommit
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
45 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
46 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
47 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
48 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
49 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
50 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
51 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
52 extension in Mercurial 6.6.
37198
78c2e9418278 infinitepush: drop the `--create` flag to push command
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37195
diff changeset
53 $ hg push -r .
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
54 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
55 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
56 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
57 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
58 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
59 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
60 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
61 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
62 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
63 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
64 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
65 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
66 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
67 searching for changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
68 remote: adding changesets
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
69 remote: adding manifests
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
70 remote: adding file changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
71 remote: added 1 changesets with 1 changes to 1 files
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
72 $ mkcommit scratchcommit
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
73 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
74 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
75 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
76 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
77 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
78 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
79 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
80 extension in Mercurial 6.6.
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
81 $ hg push -r . -B scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
82 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
83 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
84 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
85 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
86 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
87 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
88 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
89 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
90 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
91 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
92 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
93 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
94 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
95 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
96 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
97 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
98 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
99 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
100 remote: pushing 1 commit:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
101 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
102 $ hg log -G
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
103 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
104 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
105 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
106 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
107 @ changeset: 1:20759b6926ce
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
108 | bookmark: scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
109 | tag: tip
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
110 | user: test
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
111 | date: Thu Jan 01 00:00:00 1970 +0000
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
112 | summary: scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
113 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
114 o changeset: 0:67145f466344
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
115 user: test
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
116 date: Thu Jan 01 00:00:00 1970 +0000
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
117 summary: initialcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
118
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
119 $ hg log -G -R ../repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
120 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
121 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
122 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
123 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
124 o changeset: 0:67145f466344
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
125 tag: tip
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
126 user: test
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
127 date: Thu Jan 01 00:00:00 1970 +0000
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
128 summary: initialcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
129
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
130 $ find ../repo/.hg/scratchbranches | sort
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
131 ../repo/.hg/scratchbranches
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
132 ../repo/.hg/scratchbranches/filebundlestore
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
133 ../repo/.hg/scratchbranches/filebundlestore/b9
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
134 ../repo/.hg/scratchbranches/filebundlestore/b9/e1
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
135 ../repo/.hg/scratchbranches/filebundlestore/b9/e1/b9e1ee5f93fb6d7c42496fc176c09839639dd9cc
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
136 ../repo/.hg/scratchbranches/index
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
137 ../repo/.hg/scratchbranches/index/bookmarkmap
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
138 ../repo/.hg/scratchbranches/index/bookmarkmap/scratch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
139 ../repo/.hg/scratchbranches/index/bookmarkmap/scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
140 ../repo/.hg/scratchbranches/index/nodemap
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
141 ../repo/.hg/scratchbranches/index/nodemap/20759b6926ce827d5a8c73eb1fa9726d6f7defb2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
142
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
143 From another client we can get the scratchbranch if we ask for it explicitely
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
144
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
145 $ cd ..
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
146 $ hg clone ssh://user@dummy/repo client2 -q
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
147 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
148 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
149 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
150 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
151 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
152 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
153 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
154 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
155 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
156 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
157 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
158 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
159 $ cd client2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
160 $ hg pull -B scratch/mybranch --traceback
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
161 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
162 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
163 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
164 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
165 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
166 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
167 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
168 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
169 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
170 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
171 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
172 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
173 pulling from ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
174 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
175 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
176 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
177 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
178 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
179 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
180 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
181 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
182 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
183 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
184 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
185 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
186 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
187 adding changesets
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
188 adding manifests
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
189 adding file changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
190 added 1 changesets with 1 changes to 1 files
39480
89630d0b3e23 phase: report number of non-public changeset alongside the new range
Boris Feld <boris.feld@octobus.net>
parents: 37812
diff changeset
191 new changesets 20759b6926ce (1 drafts)
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
192 (run 'hg update' to get a working copy)
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
193 $ hg log -G
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
194 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
195 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
196 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
197 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
198 o changeset: 1:20759b6926ce
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
199 | bookmark: scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
200 | tag: tip
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
201 | user: test
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
202 | date: Thu Jan 01 00:00:00 1970 +0000
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
203 | summary: scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
204 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
205 @ changeset: 0:67145f466344
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
206 user: test
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
207 date: Thu Jan 01 00:00:00 1970 +0000
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
208 summary: initialcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
209
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
210 $ cd ..
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
211
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
212 Push to non-scratch bookmark
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
213
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
214 $ cd client
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
215 $ hg up 0
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
216 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
217 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
218 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
219 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
220 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
221 $ mkcommit newcommit
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
222 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
223 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
224 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
225 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
226 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
227 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
228 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
229 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
230 created new head
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
231 $ hg push -r .
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
232 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
233 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
234 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
235 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
236 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
237 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
238 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
239 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
240 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
241 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
242 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
243 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
244 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
245 searching for changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
246 remote: adding changesets
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
247 remote: adding manifests
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
248 remote: adding file changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
249 remote: added 1 changesets with 1 changes to 1 files
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
250 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
251 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
252 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
253 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
254 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
255 @ newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
256 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
257 | o scratchcommit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
258 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
259 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
260
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
261
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
262 Push to scratch branch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
263 $ cd ../client2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
264 $ hg up -q scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
265 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
266 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
267 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
268 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
269 $ mkcommit 'new scratch commit'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
270 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
271 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
272 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
273 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
274 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
275 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
276 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
277 extension in Mercurial 6.6.
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
278 $ hg push -r . -B scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
279 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
280 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
281 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
282 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
283 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
284 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
285 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
286 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
287 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
288 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
289 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
290 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
291 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
292 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
293 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
294 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
295 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
296 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
297 remote: pushing 2 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
298 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
299 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
300 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
301 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
302 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
303 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
304 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
305 @ new scratch commit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
306 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
307 o scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
308 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
309 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
310
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
311 $ scratchnodes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
312 1de1d7d92f8965260391d0513fe8a8d5973d3042 bed63daed3beba97fff2e819a148cf415c217a85
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
313 20759b6926ce827d5a8c73eb1fa9726d6f7defb2 bed63daed3beba97fff2e819a148cf415c217a85
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
314
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
315 $ scratchbookmarks
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
316 scratch/mybranch 1de1d7d92f8965260391d0513fe8a8d5973d3042
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
317
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
318 Push scratch bookmark with no new revs
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
319 $ hg push -r . -B scratch/anotherbranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
320 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
321 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
322 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
323 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
324 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
325 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
326 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
327 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
328 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
329 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
330 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
331 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
332 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
333 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
334 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
335 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
336 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
337 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
338 remote: pushing 2 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
339 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
340 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
341 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
342 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
343 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
344 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
345 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
346 @ new scratch commit draft scratch/anotherbranch scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
347 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
348 o scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
349 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
350 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
351
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
352 $ scratchbookmarks
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
353 scratch/anotherbranch 1de1d7d92f8965260391d0513fe8a8d5973d3042
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
354 scratch/mybranch 1de1d7d92f8965260391d0513fe8a8d5973d3042
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
355
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
356 Pull scratch and non-scratch bookmark at the same time
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
357
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
358 $ hg -R ../repo book newbook
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
359 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
360 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
361 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
362 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
363 $ cd ../client
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
364 $ hg pull -B newbook -B scratch/mybranch --traceback
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
365 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
366 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
367 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
368 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
369 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
370 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
371 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
372 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
373 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
374 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
375 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
376 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
377 pulling from ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
378 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
379 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
380 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
381 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
382 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
383 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
384 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
385 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
386 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
387 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
388 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
389 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
390 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
391 adding changesets
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
392 adding manifests
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
393 adding file changes
42897
d7304434390f changegroup: move message about added changes to transaction summary
Pierre-Yves David <pierre-yves.david@octobus.net>
parents: 39480
diff changeset
394 adding remote bookmark newbook
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
395 added 1 changesets with 1 changes to 2 files
39480
89630d0b3e23 phase: report number of non-public changeset alongside the new range
Boris Feld <boris.feld@octobus.net>
parents: 37812
diff changeset
396 new changesets 1de1d7d92f89 (1 drafts)
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
397 (run 'hg update' to get a working copy)
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
398 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
399 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
400 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
401 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
402 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
403 o new scratch commit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
404 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
405 | @ newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
406 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
407 o | scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
408 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
409 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
410
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
411
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
412 Push scratch revision without bookmark with --bundle-store
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
413
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
414 $ hg up -q tip
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
415 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
416 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
417 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
418 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
419 $ mkcommit scratchcommitnobook
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
420 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
421 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
422 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
423 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
424 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
425 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
426 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
427 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
428 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
429 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
430 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
431 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
432 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
433 @ scratchcommitnobook draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
434 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
435 o new scratch commit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
436 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
437 | o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
438 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
439 o | scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
440 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
441 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
442
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
443 $ hg push -r . --bundle-store
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
444 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
445 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
446 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
447 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
448 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
449 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
450 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
451 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
452 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
453 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
454 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
455 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
456 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
457 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
458 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
459 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
460 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
461 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
462 remote: pushing 3 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
463 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
464 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
465 remote: 2b5d271c7e0d scratchcommitnobook
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
466 $ hg -R ../repo log -G -T '{desc} {phase}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
467 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
468 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
469 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
470 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
471 o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
472 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
473 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
474
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
475
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
476 $ scratchnodes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
477 1de1d7d92f8965260391d0513fe8a8d5973d3042 66fa08ff107451320512817bed42b7f467a1bec3
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
478 20759b6926ce827d5a8c73eb1fa9726d6f7defb2 66fa08ff107451320512817bed42b7f467a1bec3
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
479 2b5d271c7e0d25d811359a314d413ebcc75c9524 66fa08ff107451320512817bed42b7f467a1bec3
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
480
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
481 Test with pushrebase
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
482 $ mkcommit scratchcommitwithpushrebase
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
483 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
484 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
485 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
486 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
487 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
488 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
489 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
490 extension in Mercurial 6.6.
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
491 $ hg push -r . -B scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
492 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
493 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
494 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
495 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
496 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
497 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
498 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
499 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
500 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
501 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
502 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
503 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
504 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
505 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
506 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
507 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
508 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
509 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
510 remote: pushing 4 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
511 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
512 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
513 remote: 2b5d271c7e0d scratchcommitnobook
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
514 remote: d8c4f54ab678 scratchcommitwithpushrebase
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
515 $ hg -R ../repo log -G -T '{desc} {phase}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
516 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
517 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
518 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
519 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
520 o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
521 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
522 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
523
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
524 $ scratchnodes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
525 1de1d7d92f8965260391d0513fe8a8d5973d3042 e3cb2ac50f9e1e6a5ead3217fc21236c84af4397
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
526 20759b6926ce827d5a8c73eb1fa9726d6f7defb2 e3cb2ac50f9e1e6a5ead3217fc21236c84af4397
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
527 2b5d271c7e0d25d811359a314d413ebcc75c9524 e3cb2ac50f9e1e6a5ead3217fc21236c84af4397
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
528 d8c4f54ab678fd67cb90bb3f272a2dc6513a59a7 e3cb2ac50f9e1e6a5ead3217fc21236c84af4397
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
529
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
530 Change the order of pushrebase and infinitepush
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
531 $ mkcommit scratchcommitwithpushrebase2
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
532 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
533 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
534 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
535 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
536 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
537 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
538 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
539 extension in Mercurial 6.6.
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
540 $ hg push -r . -B scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
541 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
542 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
543 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
544 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
545 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
546 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
547 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
548 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
549 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
550 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
551 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
552 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
553 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
554 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
555 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
556 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
557 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
558 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
559 remote: pushing 5 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
560 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
561 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
562 remote: 2b5d271c7e0d scratchcommitnobook
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
563 remote: d8c4f54ab678 scratchcommitwithpushrebase
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
564 remote: 6c10d49fe927 scratchcommitwithpushrebase2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
565 $ hg -R ../repo log -G -T '{desc} {phase}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
566 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
567 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
568 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
569 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
570 o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
571 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
572 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
573
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
574 $ scratchnodes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
575 1de1d7d92f8965260391d0513fe8a8d5973d3042 cd0586065eaf8b483698518f5fc32531e36fd8e0
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
576 20759b6926ce827d5a8c73eb1fa9726d6f7defb2 cd0586065eaf8b483698518f5fc32531e36fd8e0
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
577 2b5d271c7e0d25d811359a314d413ebcc75c9524 cd0586065eaf8b483698518f5fc32531e36fd8e0
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
578 6c10d49fe92751666c40263f96721b918170d3da cd0586065eaf8b483698518f5fc32531e36fd8e0
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
579 d8c4f54ab678fd67cb90bb3f272a2dc6513a59a7 cd0586065eaf8b483698518f5fc32531e36fd8e0
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
580
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
581 Non-fastforward scratch bookmark push
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
582
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
583 $ hg log -GT "{rev}:{node} {desc}\n"
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
584 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
585 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
586 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
587 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
588 @ 6:6c10d49fe92751666c40263f96721b918170d3da scratchcommitwithpushrebase2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
589 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
590 o 5:d8c4f54ab678fd67cb90bb3f272a2dc6513a59a7 scratchcommitwithpushrebase
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
591 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
592 o 4:2b5d271c7e0d25d811359a314d413ebcc75c9524 scratchcommitnobook
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
593 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
594 o 3:1de1d7d92f8965260391d0513fe8a8d5973d3042 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
595 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
596 | o 2:91894e11e8255bf41aa5434b7b98e8b2aa2786eb newcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
597 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
598 o | 1:20759b6926ce827d5a8c73eb1fa9726d6f7defb2 scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
599 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
600 o 0:67145f4663446a9580364f70034fea6e21293b6f initialcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
601
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
602 $ hg up 6c10d49fe927
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
603 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
604 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
605 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
606 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
607 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
608 $ echo 1 > amend
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
609 $ hg add amend
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
610 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
611 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
612 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
613 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
614 $ hg ci --amend -m 'scratch amended commit'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
615 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
616 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
617 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
618 extension in Mercurial 6.6.
37812
91b717e2cafa tests: drop a useless glob in test-infinite-bundlestore.t
Matt Harbison <matt_harbison@yahoo.com>
parents: 37379
diff changeset
619 saved backup bundle to $TESTTMP/client/.hg/strip-backup/6c10d49fe927-c99ffec5-amend.hg
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
620 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
621 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
622 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
623 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
624 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
625 @ scratch amended commit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
626 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
627 o scratchcommitwithpushrebase draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
628 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
629 o scratchcommitnobook draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
630 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
631 o new scratch commit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
632 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
633 | o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
634 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
635 o | scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
636 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
637 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
638
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
639
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
640 $ scratchbookmarks
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
641 scratch/anotherbranch 1de1d7d92f8965260391d0513fe8a8d5973d3042
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
642 scratch/mybranch 6c10d49fe92751666c40263f96721b918170d3da
37199
c5687ce3b411 infinitepush: drop the `--to` flag to push and use `-B` instead
Pulkit Goyal <7895pulkit@gmail.com>
parents: 37198
diff changeset
643 $ hg push -r . -B scratch/mybranch
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
644 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
645 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
646 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
647 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
648 pushing to ssh://user@dummy/repo
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
649 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
650 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
651 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
652 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
653 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
654 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
655 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
656 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
657 searching for changes
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
658 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
659 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
660 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
661 remote: extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
662 remote: pushing 5 commits:
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
663 remote: 20759b6926ce scratchcommit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
664 remote: 1de1d7d92f89 new scratch commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
665 remote: 2b5d271c7e0d scratchcommitnobook
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
666 remote: d8c4f54ab678 scratchcommitwithpushrebase
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
667 remote: 8872775dd97a scratch amended commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
668 $ scratchbookmarks
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
669 scratch/anotherbranch 1de1d7d92f8965260391d0513fe8a8d5973d3042
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
670 scratch/mybranch 8872775dd97a750e1533dc1fbbca665644b32547
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
671 $ hg log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
672 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
673 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
674 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
675 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
676 @ scratch amended commit draft scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
677 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
678 o scratchcommitwithpushrebase draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
679 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
680 o scratchcommitnobook draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
681 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
682 o new scratch commit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
683 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
684 | o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
685 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
686 o | scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
687 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
688 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
689
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
690 Check that push path is not ignored. Add new path to the hgrc
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
691 $ cat >> .hg/hgrc << EOF
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
692 > [paths]
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
693 > peer=ssh://user@dummy/client2
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
694 > EOF
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
695
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
696 Checkout last non-scrath commit
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
697 $ hg up 91894e11e8255
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
698 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
699 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
700 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
701 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
702 1 files updated, 0 files merged, 6 files removed, 0 files unresolved
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
703 $ mkcommit peercommit
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
704 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
705 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
706 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
707 extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
708 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
709 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
710 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
711 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
712 Use --force because this push creates new head
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
713 $ hg push peer -r . -f
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
714 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
715 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
716 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
717 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
718 pushing to ssh://user@dummy/client2
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
719 remote: IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
720 remote: mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
721 remote: unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
722 remote: extension in Mercurial 6.6.
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
723 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
724 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
725 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
726 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
727 searching for changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
728 remote: adding changesets
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
729 remote: adding manifests
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
730 remote: adding file changes
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
731 remote: added 2 changesets with 2 changes to 2 files (+1 heads)
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
732 $ hg -R ../repo log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
733 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
734 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
735 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
736 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
737 o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
738 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
739 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
740
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
741 $ hg -R ../client2 log -G -T '{desc} {phase} {bookmarks}'
50704
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
742 IMPORTANT: if you use this extension, please contact
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
743 mercurial-devel@mercurial-scm.org IMMEDIATELY. This extension is believed to be
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
744 unused and barring learning of users of this functionality, we drop this
68c4f8f3c9f4 infinitepush: aggressively deprecated infinite push
pierre-yves.david@ens-lyon.org
parents: 50685
diff changeset
745 extension in Mercurial 6.6.
37187
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
746 o peercommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
747 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
748 o newcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
749 |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
750 | @ new scratch commit draft scratch/anotherbranch scratch/mybranch
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
751 | |
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
752 | o scratchcommit draft
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
753 |/
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
754 o initialcommit public
03ff17a4bf53 infinitepush: move the extension to core from fb-hgext
Pulkit Goyal <7895pulkit@gmail.com>
parents:
diff changeset
755