Show More
@@ -1,864 +1,871 b'' | |||||
1 | # rebase.py - rebasing feature for mercurial |
|
1 | # rebase.py - rebasing feature for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com> |
|
3 | # Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | '''command to move sets of revisions to a different ancestor |
|
8 | '''command to move sets of revisions to a different ancestor | |
9 |
|
9 | |||
10 | This extension lets you rebase changesets in an existing Mercurial |
|
10 | This extension lets you rebase changesets in an existing Mercurial | |
11 | repository. |
|
11 | repository. | |
12 |
|
12 | |||
13 | For more information: |
|
13 | For more information: | |
14 | http://mercurial.selenic.com/wiki/RebaseExtension |
|
14 | http://mercurial.selenic.com/wiki/RebaseExtension | |
15 | ''' |
|
15 | ''' | |
16 |
|
16 | |||
17 | from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks |
|
17 | from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks | |
18 | from mercurial import extensions, patch, scmutil, phases, obsolete, error |
|
18 | from mercurial import extensions, patch, scmutil, phases, obsolete, error | |
19 | from mercurial.commands import templateopts |
|
19 | from mercurial.commands import templateopts | |
20 | from mercurial.node import nullrev |
|
20 | from mercurial.node import nullrev | |
21 | from mercurial.lock import release |
|
21 | from mercurial.lock import release | |
22 | from mercurial.i18n import _ |
|
22 | from mercurial.i18n import _ | |
23 | import os, errno |
|
23 | import os, errno | |
24 |
|
24 | |||
25 | nullmerge = -2 |
|
25 | nullmerge = -2 | |
26 | revignored = -3 |
|
26 | revignored = -3 | |
27 |
|
27 | |||
28 | cmdtable = {} |
|
28 | cmdtable = {} | |
29 | command = cmdutil.command(cmdtable) |
|
29 | command = cmdutil.command(cmdtable) | |
30 | testedwith = 'internal' |
|
30 | testedwith = 'internal' | |
31 |
|
31 | |||
32 | def _savegraft(ctx, extra): |
|
32 | def _savegraft(ctx, extra): | |
33 | s = ctx.extra().get('source', None) |
|
33 | s = ctx.extra().get('source', None) | |
34 | if s is not None: |
|
34 | if s is not None: | |
35 | extra['source'] = s |
|
35 | extra['source'] = s | |
36 |
|
36 | |||
37 | def _savebranch(ctx, extra): |
|
37 | def _savebranch(ctx, extra): | |
38 | extra['branch'] = ctx.branch() |
|
38 | extra['branch'] = ctx.branch() | |
39 |
|
39 | |||
40 | def _makeextrafn(copiers): |
|
40 | def _makeextrafn(copiers): | |
41 | """make an extrafn out of the given copy-functions. |
|
41 | """make an extrafn out of the given copy-functions. | |
42 |
|
42 | |||
43 | A copy function takes a context and an extra dict, and mutates the |
|
43 | A copy function takes a context and an extra dict, and mutates the | |
44 | extra dict as needed based on the given context. |
|
44 | extra dict as needed based on the given context. | |
45 | """ |
|
45 | """ | |
46 | def extrafn(ctx, extra): |
|
46 | def extrafn(ctx, extra): | |
47 | for c in copiers: |
|
47 | for c in copiers: | |
48 | c(ctx, extra) |
|
48 | c(ctx, extra) | |
49 | return extrafn |
|
49 | return extrafn | |
50 |
|
50 | |||
51 | @command('rebase', |
|
51 | @command('rebase', | |
52 | [('s', 'source', '', |
|
52 | [('s', 'source', '', | |
53 | _('rebase from the specified changeset'), _('REV')), |
|
53 | _('rebase from the specified changeset'), _('REV')), | |
54 | ('b', 'base', '', |
|
54 | ('b', 'base', '', | |
55 | _('rebase from the base of the specified changeset ' |
|
55 | _('rebase from the base of the specified changeset ' | |
56 | '(up to greatest common ancestor of base and dest)'), |
|
56 | '(up to greatest common ancestor of base and dest)'), | |
57 | _('REV')), |
|
57 | _('REV')), | |
58 | ('r', 'rev', [], |
|
58 | ('r', 'rev', [], | |
59 | _('rebase these revisions'), |
|
59 | _('rebase these revisions'), | |
60 | _('REV')), |
|
60 | _('REV')), | |
61 | ('d', 'dest', '', |
|
61 | ('d', 'dest', '', | |
62 | _('rebase onto the specified changeset'), _('REV')), |
|
62 | _('rebase onto the specified changeset'), _('REV')), | |
63 | ('', 'collapse', False, _('collapse the rebased changesets')), |
|
63 | ('', 'collapse', False, _('collapse the rebased changesets')), | |
64 | ('m', 'message', '', |
|
64 | ('m', 'message', '', | |
65 | _('use text as collapse commit message'), _('TEXT')), |
|
65 | _('use text as collapse commit message'), _('TEXT')), | |
66 | ('e', 'edit', False, _('invoke editor on commit messages')), |
|
66 | ('e', 'edit', False, _('invoke editor on commit messages')), | |
67 | ('l', 'logfile', '', |
|
67 | ('l', 'logfile', '', | |
68 | _('read collapse commit message from file'), _('FILE')), |
|
68 | _('read collapse commit message from file'), _('FILE')), | |
69 | ('', 'keep', False, _('keep original changesets')), |
|
69 | ('', 'keep', False, _('keep original changesets')), | |
70 | ('', 'keepbranches', False, _('keep original branch names')), |
|
70 | ('', 'keepbranches', False, _('keep original branch names')), | |
71 | ('D', 'detach', False, _('(DEPRECATED)')), |
|
71 | ('D', 'detach', False, _('(DEPRECATED)')), | |
72 | ('t', 'tool', '', _('specify merge tool')), |
|
72 | ('t', 'tool', '', _('specify merge tool')), | |
73 | ('c', 'continue', False, _('continue an interrupted rebase')), |
|
73 | ('c', 'continue', False, _('continue an interrupted rebase')), | |
74 | ('a', 'abort', False, _('abort an interrupted rebase'))] + |
|
74 | ('a', 'abort', False, _('abort an interrupted rebase'))] + | |
75 | templateopts, |
|
75 | templateopts, | |
76 | _('[-s REV | -b REV] [-d REV] [OPTION]')) |
|
76 | _('[-s REV | -b REV] [-d REV] [OPTION]')) | |
77 | def rebase(ui, repo, **opts): |
|
77 | def rebase(ui, repo, **opts): | |
78 | """move changeset (and descendants) to a different branch |
|
78 | """move changeset (and descendants) to a different branch | |
79 |
|
79 | |||
80 | Rebase uses repeated merging to graft changesets from one part of |
|
80 | Rebase uses repeated merging to graft changesets from one part of | |
81 | history (the source) onto another (the destination). This can be |
|
81 | history (the source) onto another (the destination). This can be | |
82 | useful for linearizing *local* changes relative to a master |
|
82 | useful for linearizing *local* changes relative to a master | |
83 | development tree. |
|
83 | development tree. | |
84 |
|
84 | |||
85 | You should not rebase changesets that have already been shared |
|
85 | You should not rebase changesets that have already been shared | |
86 | with others. Doing so will force everybody else to perform the |
|
86 | with others. Doing so will force everybody else to perform the | |
87 | same rebase or they will end up with duplicated changesets after |
|
87 | same rebase or they will end up with duplicated changesets after | |
88 | pulling in your rebased changesets. |
|
88 | pulling in your rebased changesets. | |
89 |
|
89 | |||
90 | In its default configuration, Mercurial will prevent you from |
|
90 | In its default configuration, Mercurial will prevent you from | |
91 | rebasing published changes. See :hg:`help phases` for details. |
|
91 | rebasing published changes. See :hg:`help phases` for details. | |
92 |
|
92 | |||
93 | If you don't specify a destination changeset (``-d/--dest``), |
|
93 | If you don't specify a destination changeset (``-d/--dest``), | |
94 | rebase uses the current branch tip as the destination. (The |
|
94 | rebase uses the current branch tip as the destination. (The | |
95 | destination changeset is not modified by rebasing, but new |
|
95 | destination changeset is not modified by rebasing, but new | |
96 | changesets are added as its descendants.) |
|
96 | changesets are added as its descendants.) | |
97 |
|
97 | |||
98 | You can specify which changesets to rebase in two ways: as a |
|
98 | You can specify which changesets to rebase in two ways: as a | |
99 | "source" changeset or as a "base" changeset. Both are shorthand |
|
99 | "source" changeset or as a "base" changeset. Both are shorthand | |
100 | for a topologically related set of changesets (the "source |
|
100 | for a topologically related set of changesets (the "source | |
101 | branch"). If you specify source (``-s/--source``), rebase will |
|
101 | branch"). If you specify source (``-s/--source``), rebase will | |
102 | rebase that changeset and all of its descendants onto dest. If you |
|
102 | rebase that changeset and all of its descendants onto dest. If you | |
103 | specify base (``-b/--base``), rebase will select ancestors of base |
|
103 | specify base (``-b/--base``), rebase will select ancestors of base | |
104 | back to but not including the common ancestor with dest. Thus, |
|
104 | back to but not including the common ancestor with dest. Thus, | |
105 | ``-b`` is less precise but more convenient than ``-s``: you can |
|
105 | ``-b`` is less precise but more convenient than ``-s``: you can | |
106 | specify any changeset in the source branch, and rebase will select |
|
106 | specify any changeset in the source branch, and rebase will select | |
107 | the whole branch. If you specify neither ``-s`` nor ``-b``, rebase |
|
107 | the whole branch. If you specify neither ``-s`` nor ``-b``, rebase | |
108 | uses the parent of the working directory as the base. |
|
108 | uses the parent of the working directory as the base. | |
109 |
|
109 | |||
110 | For advanced usage, a third way is available through the ``--rev`` |
|
110 | For advanced usage, a third way is available through the ``--rev`` | |
111 | option. It allows you to specify an arbitrary set of changesets to |
|
111 | option. It allows you to specify an arbitrary set of changesets to | |
112 | rebase. Descendants of revs you specify with this option are not |
|
112 | rebase. Descendants of revs you specify with this option are not | |
113 | automatically included in the rebase. |
|
113 | automatically included in the rebase. | |
114 |
|
114 | |||
115 | By default, rebase recreates the changesets in the source branch |
|
115 | By default, rebase recreates the changesets in the source branch | |
116 | as descendants of dest and then destroys the originals. Use |
|
116 | as descendants of dest and then destroys the originals. Use | |
117 | ``--keep`` to preserve the original source changesets. Some |
|
117 | ``--keep`` to preserve the original source changesets. Some | |
118 | changesets in the source branch (e.g. merges from the destination |
|
118 | changesets in the source branch (e.g. merges from the destination | |
119 | branch) may be dropped if they no longer contribute any change. |
|
119 | branch) may be dropped if they no longer contribute any change. | |
120 |
|
120 | |||
121 | One result of the rules for selecting the destination changeset |
|
121 | One result of the rules for selecting the destination changeset | |
122 | and source branch is that, unlike ``merge``, rebase will do |
|
122 | and source branch is that, unlike ``merge``, rebase will do | |
123 | nothing if you are at the branch tip of a named branch |
|
123 | nothing if you are at the branch tip of a named branch | |
124 | with two heads. You need to explicitly specify source and/or |
|
124 | with two heads. You need to explicitly specify source and/or | |
125 | destination (or ``update`` to the other head, if it's the head of |
|
125 | destination (or ``update`` to the other head, if it's the head of | |
126 | the intended source branch). |
|
126 | the intended source branch). | |
127 |
|
127 | |||
128 | If a rebase is interrupted to manually resolve a merge, it can be |
|
128 | If a rebase is interrupted to manually resolve a merge, it can be | |
129 | continued with --continue/-c or aborted with --abort/-a. |
|
129 | continued with --continue/-c or aborted with --abort/-a. | |
130 |
|
130 | |||
131 | Returns 0 on success, 1 if nothing to rebase. |
|
131 | Returns 0 on success, 1 if nothing to rebase. | |
132 | """ |
|
132 | """ | |
133 | originalwd = target = None |
|
133 | originalwd = target = None | |
134 | activebookmark = None |
|
134 | activebookmark = None | |
135 | external = nullrev |
|
135 | external = nullrev | |
136 | state = {} |
|
136 | state = {} | |
137 | skipped = set() |
|
137 | skipped = set() | |
138 | targetancestors = set() |
|
138 | targetancestors = set() | |
139 |
|
139 | |||
140 | editor = None |
|
140 | editor = None | |
141 | if opts.get('edit'): |
|
141 | if opts.get('edit'): | |
142 | editor = cmdutil.commitforceeditor |
|
142 | editor = cmdutil.commitforceeditor | |
143 |
|
143 | |||
144 | lock = wlock = None |
|
144 | lock = wlock = None | |
145 | try: |
|
145 | try: | |
146 | wlock = repo.wlock() |
|
146 | wlock = repo.wlock() | |
147 | lock = repo.lock() |
|
147 | lock = repo.lock() | |
148 |
|
148 | |||
149 | # Validate input and define rebasing points |
|
149 | # Validate input and define rebasing points | |
150 | destf = opts.get('dest', None) |
|
150 | destf = opts.get('dest', None) | |
151 | srcf = opts.get('source', None) |
|
151 | srcf = opts.get('source', None) | |
152 | basef = opts.get('base', None) |
|
152 | basef = opts.get('base', None) | |
153 | revf = opts.get('rev', []) |
|
153 | revf = opts.get('rev', []) | |
154 | contf = opts.get('continue') |
|
154 | contf = opts.get('continue') | |
155 | abortf = opts.get('abort') |
|
155 | abortf = opts.get('abort') | |
156 | collapsef = opts.get('collapse', False) |
|
156 | collapsef = opts.get('collapse', False) | |
157 | collapsemsg = cmdutil.logmessage(ui, opts) |
|
157 | collapsemsg = cmdutil.logmessage(ui, opts) | |
158 | e = opts.get('extrafn') # internal, used by e.g. hgsubversion |
|
158 | e = opts.get('extrafn') # internal, used by e.g. hgsubversion | |
159 | extrafns = [_savegraft] |
|
159 | extrafns = [_savegraft] | |
160 | if e: |
|
160 | if e: | |
161 | extrafns = [e] |
|
161 | extrafns = [e] | |
162 | keepf = opts.get('keep', False) |
|
162 | keepf = opts.get('keep', False) | |
163 | keepbranchesf = opts.get('keepbranches', False) |
|
163 | keepbranchesf = opts.get('keepbranches', False) | |
164 | # keepopen is not meant for use on the command line, but by |
|
164 | # keepopen is not meant for use on the command line, but by | |
165 | # other extensions |
|
165 | # other extensions | |
166 | keepopen = opts.get('keepopen', False) |
|
166 | keepopen = opts.get('keepopen', False) | |
167 |
|
167 | |||
168 | if collapsemsg and not collapsef: |
|
168 | if collapsemsg and not collapsef: | |
169 | raise util.Abort( |
|
169 | raise util.Abort( | |
170 | _('message can only be specified with collapse')) |
|
170 | _('message can only be specified with collapse')) | |
171 |
|
171 | |||
172 | if contf or abortf: |
|
172 | if contf or abortf: | |
173 | if contf and abortf: |
|
173 | if contf and abortf: | |
174 | raise util.Abort(_('cannot use both abort and continue')) |
|
174 | raise util.Abort(_('cannot use both abort and continue')) | |
175 | if collapsef: |
|
175 | if collapsef: | |
176 | raise util.Abort( |
|
176 | raise util.Abort( | |
177 | _('cannot use collapse with continue or abort')) |
|
177 | _('cannot use collapse with continue or abort')) | |
178 | if srcf or basef or destf: |
|
178 | if srcf or basef or destf: | |
179 | raise util.Abort( |
|
179 | raise util.Abort( | |
180 | _('abort and continue do not allow specifying revisions')) |
|
180 | _('abort and continue do not allow specifying revisions')) | |
181 | if opts.get('tool', False): |
|
181 | if opts.get('tool', False): | |
182 | ui.warn(_('tool option will be ignored\n')) |
|
182 | ui.warn(_('tool option will be ignored\n')) | |
183 |
|
183 | |||
184 | try: |
|
184 | try: | |
185 | (originalwd, target, state, skipped, collapsef, keepf, |
|
185 | (originalwd, target, state, skipped, collapsef, keepf, | |
186 | keepbranchesf, external, activebookmark) = restorestatus(repo) |
|
186 | keepbranchesf, external, activebookmark) = restorestatus(repo) | |
187 | except error.RepoLookupError: |
|
187 | except error.RepoLookupError: | |
188 | if abortf: |
|
188 | if abortf: | |
189 | clearstatus(repo) |
|
189 | clearstatus(repo) | |
190 | repo.ui.warn(_('rebase aborted (no revision is removed,' |
|
190 | repo.ui.warn(_('rebase aborted (no revision is removed,' | |
191 | ' only broken state is cleared)\n')) |
|
191 | ' only broken state is cleared)\n')) | |
192 | return 0 |
|
192 | return 0 | |
193 | else: |
|
193 | else: | |
194 | msg = _('cannot continue inconsistent rebase') |
|
194 | msg = _('cannot continue inconsistent rebase') | |
195 | hint = _('use "hg rebase --abort" to clear borken state') |
|
195 | hint = _('use "hg rebase --abort" to clear borken state') | |
196 | raise util.Abort(msg, hint=hint) |
|
196 | raise util.Abort(msg, hint=hint) | |
197 | if abortf: |
|
197 | if abortf: | |
198 | return abort(repo, originalwd, target, state) |
|
198 | return abort(repo, originalwd, target, state) | |
199 | else: |
|
199 | else: | |
200 | if srcf and basef: |
|
200 | if srcf and basef: | |
201 | raise util.Abort(_('cannot specify both a ' |
|
201 | raise util.Abort(_('cannot specify both a ' | |
202 | 'source and a base')) |
|
202 | 'source and a base')) | |
203 | if revf and basef: |
|
203 | if revf and basef: | |
204 | raise util.Abort(_('cannot specify both a ' |
|
204 | raise util.Abort(_('cannot specify both a ' | |
205 | 'revision and a base')) |
|
205 | 'revision and a base')) | |
206 | if revf and srcf: |
|
206 | if revf and srcf: | |
207 | raise util.Abort(_('cannot specify both a ' |
|
207 | raise util.Abort(_('cannot specify both a ' | |
208 | 'revision and a source')) |
|
208 | 'revision and a source')) | |
209 |
|
209 | |||
210 | cmdutil.checkunfinished(repo) |
|
210 | cmdutil.checkunfinished(repo) | |
211 | cmdutil.bailifchanged(repo) |
|
211 | cmdutil.bailifchanged(repo) | |
212 |
|
212 | |||
213 | if not destf: |
|
213 | if not destf: | |
214 | # Destination defaults to the latest revision in the |
|
214 | # Destination defaults to the latest revision in the | |
215 | # current branch |
|
215 | # current branch | |
216 | branch = repo[None].branch() |
|
216 | branch = repo[None].branch() | |
217 | dest = repo[branch] |
|
217 | dest = repo[branch] | |
218 | else: |
|
218 | else: | |
219 | dest = scmutil.revsingle(repo, destf) |
|
219 | dest = scmutil.revsingle(repo, destf) | |
220 |
|
220 | |||
221 | if revf: |
|
221 | if revf: | |
222 | rebaseset = scmutil.revrange(repo, revf) |
|
222 | rebaseset = scmutil.revrange(repo, revf) | |
223 | elif srcf: |
|
223 | elif srcf: | |
224 | src = scmutil.revrange(repo, [srcf]) |
|
224 | src = scmutil.revrange(repo, [srcf]) | |
225 | rebaseset = repo.revs('(%ld)::', src) |
|
225 | rebaseset = repo.revs('(%ld)::', src) | |
226 | else: |
|
226 | else: | |
227 | base = scmutil.revrange(repo, [basef or '.']) |
|
227 | base = scmutil.revrange(repo, [basef or '.']) | |
228 | rebaseset = repo.revs( |
|
228 | rebaseset = repo.revs( | |
229 | '(children(ancestor(%ld, %d)) and ::(%ld))::', |
|
229 | '(children(ancestor(%ld, %d)) and ::(%ld))::', | |
230 | base, dest, base) |
|
230 | base, dest, base) | |
231 | if rebaseset: |
|
231 | if rebaseset: | |
232 | root = min(rebaseset) |
|
232 | root = min(rebaseset) | |
233 | else: |
|
233 | else: | |
234 | root = None |
|
234 | root = None | |
235 |
|
235 | |||
236 | if not rebaseset: |
|
236 | if not rebaseset: | |
237 | repo.ui.debug('base is ancestor of destination\n') |
|
237 | repo.ui.debug('base is ancestor of destination\n') | |
238 | result = None |
|
238 | result = None | |
239 | elif (not (keepf or obsolete._enabled) |
|
239 | elif (not (keepf or obsolete._enabled) | |
240 | and repo.revs('first(children(%ld) - %ld)', |
|
240 | and repo.revs('first(children(%ld) - %ld)', | |
241 | rebaseset, rebaseset)): |
|
241 | rebaseset, rebaseset)): | |
242 | raise util.Abort( |
|
242 | raise util.Abort( | |
243 | _("can't remove original changesets with" |
|
243 | _("can't remove original changesets with" | |
244 | " unrebased descendants"), |
|
244 | " unrebased descendants"), | |
245 | hint=_('use --keep to keep original changesets')) |
|
245 | hint=_('use --keep to keep original changesets')) | |
246 | else: |
|
246 | else: | |
247 | result = buildstate(repo, dest, rebaseset, collapsef) |
|
247 | result = buildstate(repo, dest, rebaseset, collapsef) | |
248 |
|
248 | |||
249 | if not result: |
|
249 | if not result: | |
250 | # Empty state built, nothing to rebase |
|
250 | # Empty state built, nothing to rebase | |
251 | ui.status(_('nothing to rebase\n')) |
|
251 | ui.status(_('nothing to rebase\n')) | |
252 | return 1 |
|
252 | return 1 | |
253 | elif not keepf and not repo[root].mutable(): |
|
253 | elif not keepf and not repo[root].mutable(): | |
254 | raise util.Abort(_("can't rebase immutable changeset %s") |
|
254 | raise util.Abort(_("can't rebase immutable changeset %s") | |
255 | % repo[root], |
|
255 | % repo[root], | |
256 | hint=_('see hg help phases for details')) |
|
256 | hint=_('see hg help phases for details')) | |
257 | else: |
|
257 | else: | |
258 | originalwd, target, state = result |
|
258 | originalwd, target, state = result | |
259 | if collapsef: |
|
259 | if collapsef: | |
260 | targetancestors = repo.changelog.ancestors([target], |
|
260 | targetancestors = repo.changelog.ancestors([target], | |
261 | inclusive=True) |
|
261 | inclusive=True) | |
262 | external = checkexternal(repo, state, targetancestors) |
|
262 | external = checkexternal(repo, state, targetancestors) | |
263 |
|
263 | |||
264 | if keepbranchesf: |
|
264 | if keepbranchesf: | |
265 | # insert _savebranch at the start of extrafns so if |
|
265 | # insert _savebranch at the start of extrafns so if | |
266 | # there's a user-provided extrafn it can clobber branch if |
|
266 | # there's a user-provided extrafn it can clobber branch if | |
267 | # desired |
|
267 | # desired | |
268 | extrafns.insert(0, _savebranch) |
|
268 | extrafns.insert(0, _savebranch) | |
269 | if collapsef: |
|
269 | if collapsef: | |
270 | branches = set() |
|
270 | branches = set() | |
271 | for rev in state: |
|
271 | for rev in state: | |
272 | branches.add(repo[rev].branch()) |
|
272 | branches.add(repo[rev].branch()) | |
273 | if len(branches) > 1: |
|
273 | if len(branches) > 1: | |
274 | raise util.Abort(_('cannot collapse multiple named ' |
|
274 | raise util.Abort(_('cannot collapse multiple named ' | |
275 | 'branches')) |
|
275 | 'branches')) | |
276 |
|
276 | |||
277 |
|
277 | |||
278 | # Rebase |
|
278 | # Rebase | |
279 | if not targetancestors: |
|
279 | if not targetancestors: | |
280 | targetancestors = repo.changelog.ancestors([target], inclusive=True) |
|
280 | targetancestors = repo.changelog.ancestors([target], inclusive=True) | |
281 |
|
281 | |||
282 | # Keep track of the current bookmarks in order to reset them later |
|
282 | # Keep track of the current bookmarks in order to reset them later | |
283 | currentbookmarks = repo._bookmarks.copy() |
|
283 | currentbookmarks = repo._bookmarks.copy() | |
284 | activebookmark = activebookmark or repo._bookmarkcurrent |
|
284 | activebookmark = activebookmark or repo._bookmarkcurrent | |
285 | if activebookmark: |
|
285 | if activebookmark: | |
286 | bookmarks.unsetcurrent(repo) |
|
286 | bookmarks.unsetcurrent(repo) | |
287 |
|
287 | |||
288 | extrafn = _makeextrafn(extrafns) |
|
288 | extrafn = _makeextrafn(extrafns) | |
289 |
|
289 | |||
290 | sortedstate = sorted(state) |
|
290 | sortedstate = sorted(state) | |
291 | total = len(sortedstate) |
|
291 | total = len(sortedstate) | |
292 | pos = 0 |
|
292 | pos = 0 | |
293 | for rev in sortedstate: |
|
293 | for rev in sortedstate: | |
294 | pos += 1 |
|
294 | pos += 1 | |
295 | if state[rev] == -1: |
|
295 | if state[rev] == -1: | |
296 | ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, repo[rev])), |
|
296 | ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, repo[rev])), | |
297 | _('changesets'), total) |
|
297 | _('changesets'), total) | |
298 | p1, p2 = defineparents(repo, rev, target, state, |
|
298 | p1, p2 = defineparents(repo, rev, target, state, | |
299 | targetancestors) |
|
299 | targetancestors) | |
300 | storestatus(repo, originalwd, target, state, collapsef, keepf, |
|
300 | storestatus(repo, originalwd, target, state, collapsef, keepf, | |
301 | keepbranchesf, external, activebookmark) |
|
301 | keepbranchesf, external, activebookmark) | |
302 | if len(repo.parents()) == 2: |
|
302 | if len(repo.parents()) == 2: | |
303 | repo.ui.debug('resuming interrupted rebase\n') |
|
303 | repo.ui.debug('resuming interrupted rebase\n') | |
304 | else: |
|
304 | else: | |
305 | try: |
|
305 | try: | |
306 | ui.setconfig('ui', 'forcemerge', opts.get('tool', '')) |
|
306 | ui.setconfig('ui', 'forcemerge', opts.get('tool', '')) | |
307 | stats = rebasenode(repo, rev, p1, state, collapsef) |
|
307 | stats = rebasenode(repo, rev, p1, state, collapsef) | |
308 | if stats and stats[3] > 0: |
|
308 | if stats and stats[3] > 0: | |
309 | raise error.InterventionRequired( |
|
309 | raise error.InterventionRequired( | |
310 | _('unresolved conflicts (see hg ' |
|
310 | _('unresolved conflicts (see hg ' | |
311 | 'resolve, then hg rebase --continue)')) |
|
311 | 'resolve, then hg rebase --continue)')) | |
312 | finally: |
|
312 | finally: | |
313 | ui.setconfig('ui', 'forcemerge', '') |
|
313 | ui.setconfig('ui', 'forcemerge', '') | |
314 | cmdutil.duplicatecopies(repo, rev, target) |
|
314 | cmdutil.duplicatecopies(repo, rev, target) | |
315 | if not collapsef: |
|
315 | if not collapsef: | |
316 | newrev = concludenode(repo, rev, p1, p2, extrafn=extrafn, |
|
316 | newrev = concludenode(repo, rev, p1, p2, extrafn=extrafn, | |
317 | editor=editor) |
|
317 | editor=editor) | |
318 | else: |
|
318 | else: | |
319 | # Skip commit if we are collapsing |
|
319 | # Skip commit if we are collapsing | |
320 | repo.setparents(repo[p1].node()) |
|
320 | repo.setparents(repo[p1].node()) | |
321 | newrev = None |
|
321 | newrev = None | |
322 | # Update the state |
|
322 | # Update the state | |
323 | if newrev is not None: |
|
323 | if newrev is not None: | |
324 | state[rev] = repo[newrev].rev() |
|
324 | state[rev] = repo[newrev].rev() | |
325 | else: |
|
325 | else: | |
326 | if not collapsef: |
|
326 | if not collapsef: | |
327 | ui.note(_('no changes, revision %d skipped\n') % rev) |
|
327 | ui.note(_('no changes, revision %d skipped\n') % rev) | |
328 | ui.debug('next revision set to %s\n' % p1) |
|
328 | ui.debug('next revision set to %s\n' % p1) | |
329 | skipped.add(rev) |
|
329 | skipped.add(rev) | |
330 | state[rev] = p1 |
|
330 | state[rev] = p1 | |
331 |
|
331 | |||
332 | ui.progress(_('rebasing'), None) |
|
332 | ui.progress(_('rebasing'), None) | |
333 | ui.note(_('rebase merging completed\n')) |
|
333 | ui.note(_('rebase merging completed\n')) | |
334 |
|
334 | |||
335 | if collapsef and not keepopen: |
|
335 | if collapsef and not keepopen: | |
336 | p1, p2 = defineparents(repo, min(state), target, |
|
336 | p1, p2 = defineparents(repo, min(state), target, | |
337 | state, targetancestors) |
|
337 | state, targetancestors) | |
338 | if collapsemsg: |
|
338 | if collapsemsg: | |
339 | commitmsg = collapsemsg |
|
339 | commitmsg = collapsemsg | |
340 | else: |
|
340 | else: | |
341 | commitmsg = 'Collapsed revision' |
|
341 | commitmsg = 'Collapsed revision' | |
342 | for rebased in state: |
|
342 | for rebased in state: | |
343 | if rebased not in skipped and state[rebased] > nullmerge: |
|
343 | if rebased not in skipped and state[rebased] > nullmerge: | |
344 | commitmsg += '\n* %s' % repo[rebased].description() |
|
344 | commitmsg += '\n* %s' % repo[rebased].description() | |
345 | commitmsg = ui.edit(commitmsg, repo.ui.username()) |
|
345 | commitmsg = ui.edit(commitmsg, repo.ui.username()) | |
346 | newrev = concludenode(repo, rev, p1, external, commitmsg=commitmsg, |
|
346 | newrev = concludenode(repo, rev, p1, external, commitmsg=commitmsg, | |
347 | extrafn=extrafn, editor=editor) |
|
347 | extrafn=extrafn, editor=editor) | |
348 |
|
348 | |||
349 | if 'qtip' in repo.tags(): |
|
349 | if 'qtip' in repo.tags(): | |
350 | updatemq(repo, state, skipped, **opts) |
|
350 | updatemq(repo, state, skipped, **opts) | |
351 |
|
351 | |||
352 | if currentbookmarks: |
|
352 | if currentbookmarks: | |
353 | # Nodeids are needed to reset bookmarks |
|
353 | # Nodeids are needed to reset bookmarks | |
354 | nstate = {} |
|
354 | nstate = {} | |
355 | for k, v in state.iteritems(): |
|
355 | for k, v in state.iteritems(): | |
356 | if v > nullmerge: |
|
356 | if v > nullmerge: | |
357 | nstate[repo[k].node()] = repo[v].node() |
|
357 | nstate[repo[k].node()] = repo[v].node() | |
358 | # XXX this is the same as dest.node() for the non-continue path -- |
|
358 | # XXX this is the same as dest.node() for the non-continue path -- | |
359 | # this should probably be cleaned up |
|
359 | # this should probably be cleaned up | |
360 | targetnode = repo[target].node() |
|
360 | targetnode = repo[target].node() | |
361 |
|
361 | |||
|
362 | # restore original working directory | |||
|
363 | # (we do this before stripping) | |||
|
364 | newwd = state.get(originalwd, originalwd) | |||
|
365 | if newwd not in [c.rev() for c in repo[None].parents()]: | |||
|
366 | ui.note(_("update back to initial working directory parent\n")) | |||
|
367 | hg.updaterepo(repo, newwd, False) | |||
|
368 | ||||
362 | if not keepf: |
|
369 | if not keepf: | |
363 | collapsedas = None |
|
370 | collapsedas = None | |
364 | if collapsef: |
|
371 | if collapsef: | |
365 | collapsedas = newrev |
|
372 | collapsedas = newrev | |
366 | clearrebased(ui, repo, state, skipped, collapsedas) |
|
373 | clearrebased(ui, repo, state, skipped, collapsedas) | |
367 |
|
374 | |||
368 | if currentbookmarks: |
|
375 | if currentbookmarks: | |
369 | updatebookmarks(repo, targetnode, nstate, currentbookmarks) |
|
376 | updatebookmarks(repo, targetnode, nstate, currentbookmarks) | |
370 |
|
377 | |||
371 | clearstatus(repo) |
|
378 | clearstatus(repo) | |
372 | ui.note(_("rebase completed\n")) |
|
379 | ui.note(_("rebase completed\n")) | |
373 | util.unlinkpath(repo.sjoin('undo'), ignoremissing=True) |
|
380 | util.unlinkpath(repo.sjoin('undo'), ignoremissing=True) | |
374 | if skipped: |
|
381 | if skipped: | |
375 | ui.note(_("%d revisions have been skipped\n") % len(skipped)) |
|
382 | ui.note(_("%d revisions have been skipped\n") % len(skipped)) | |
376 |
|
383 | |||
377 | if (activebookmark and |
|
384 | if (activebookmark and | |
378 | repo['tip'].node() == repo._bookmarks[activebookmark]): |
|
385 | repo['tip'].node() == repo._bookmarks[activebookmark]): | |
379 | bookmarks.setcurrent(repo, activebookmark) |
|
386 | bookmarks.setcurrent(repo, activebookmark) | |
380 |
|
387 | |||
381 | finally: |
|
388 | finally: | |
382 | release(lock, wlock) |
|
389 | release(lock, wlock) | |
383 |
|
390 | |||
384 | def checkexternal(repo, state, targetancestors): |
|
391 | def checkexternal(repo, state, targetancestors): | |
385 | """Check whether one or more external revisions need to be taken in |
|
392 | """Check whether one or more external revisions need to be taken in | |
386 | consideration. In the latter case, abort. |
|
393 | consideration. In the latter case, abort. | |
387 | """ |
|
394 | """ | |
388 | external = nullrev |
|
395 | external = nullrev | |
389 | source = min(state) |
|
396 | source = min(state) | |
390 | for rev in state: |
|
397 | for rev in state: | |
391 | if rev == source: |
|
398 | if rev == source: | |
392 | continue |
|
399 | continue | |
393 | # Check externals and fail if there are more than one |
|
400 | # Check externals and fail if there are more than one | |
394 | for p in repo[rev].parents(): |
|
401 | for p in repo[rev].parents(): | |
395 | if (p.rev() not in state |
|
402 | if (p.rev() not in state | |
396 | and p.rev() not in targetancestors): |
|
403 | and p.rev() not in targetancestors): | |
397 | if external != nullrev: |
|
404 | if external != nullrev: | |
398 | raise util.Abort(_('unable to collapse, there is more ' |
|
405 | raise util.Abort(_('unable to collapse, there is more ' | |
399 | 'than one external parent')) |
|
406 | 'than one external parent')) | |
400 | external = p.rev() |
|
407 | external = p.rev() | |
401 | return external |
|
408 | return external | |
402 |
|
409 | |||
403 | def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None): |
|
410 | def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None): | |
404 | 'Commit the changes and store useful information in extra' |
|
411 | 'Commit the changes and store useful information in extra' | |
405 | try: |
|
412 | try: | |
406 | repo.setparents(repo[p1].node(), repo[p2].node()) |
|
413 | repo.setparents(repo[p1].node(), repo[p2].node()) | |
407 | ctx = repo[rev] |
|
414 | ctx = repo[rev] | |
408 | if commitmsg is None: |
|
415 | if commitmsg is None: | |
409 | commitmsg = ctx.description() |
|
416 | commitmsg = ctx.description() | |
410 | extra = {'rebase_source': ctx.hex()} |
|
417 | extra = {'rebase_source': ctx.hex()} | |
411 | if extrafn: |
|
418 | if extrafn: | |
412 | extrafn(ctx, extra) |
|
419 | extrafn(ctx, extra) | |
413 | # Commit might fail if unresolved files exist |
|
420 | # Commit might fail if unresolved files exist | |
414 | newrev = repo.commit(text=commitmsg, user=ctx.user(), |
|
421 | newrev = repo.commit(text=commitmsg, user=ctx.user(), | |
415 | date=ctx.date(), extra=extra, editor=editor) |
|
422 | date=ctx.date(), extra=extra, editor=editor) | |
416 | repo.dirstate.setbranch(repo[newrev].branch()) |
|
423 | repo.dirstate.setbranch(repo[newrev].branch()) | |
417 | targetphase = max(ctx.phase(), phases.draft) |
|
424 | targetphase = max(ctx.phase(), phases.draft) | |
418 | # retractboundary doesn't overwrite upper phase inherited from parent |
|
425 | # retractboundary doesn't overwrite upper phase inherited from parent | |
419 | newnode = repo[newrev].node() |
|
426 | newnode = repo[newrev].node() | |
420 | if newnode: |
|
427 | if newnode: | |
421 | phases.retractboundary(repo, targetphase, [newnode]) |
|
428 | phases.retractboundary(repo, targetphase, [newnode]) | |
422 | return newrev |
|
429 | return newrev | |
423 | except util.Abort: |
|
430 | except util.Abort: | |
424 | # Invalidate the previous setparents |
|
431 | # Invalidate the previous setparents | |
425 | repo.dirstate.invalidate() |
|
432 | repo.dirstate.invalidate() | |
426 | raise |
|
433 | raise | |
427 |
|
434 | |||
428 | def rebasenode(repo, rev, p1, state, collapse): |
|
435 | def rebasenode(repo, rev, p1, state, collapse): | |
429 | 'Rebase a single revision' |
|
436 | 'Rebase a single revision' | |
430 | # Merge phase |
|
437 | # Merge phase | |
431 | # Update to target and merge it with local |
|
438 | # Update to target and merge it with local | |
432 | if repo['.'].rev() != repo[p1].rev(): |
|
439 | if repo['.'].rev() != repo[p1].rev(): | |
433 | repo.ui.debug(" update to %d:%s\n" % (repo[p1].rev(), repo[p1])) |
|
440 | repo.ui.debug(" update to %d:%s\n" % (repo[p1].rev(), repo[p1])) | |
434 | merge.update(repo, p1, False, True, False) |
|
441 | merge.update(repo, p1, False, True, False) | |
435 | else: |
|
442 | else: | |
436 | repo.ui.debug(" already in target\n") |
|
443 | repo.ui.debug(" already in target\n") | |
437 | repo.dirstate.write() |
|
444 | repo.dirstate.write() | |
438 | repo.ui.debug(" merge against %d:%s\n" % (repo[rev].rev(), repo[rev])) |
|
445 | repo.ui.debug(" merge against %d:%s\n" % (repo[rev].rev(), repo[rev])) | |
439 | base = None |
|
446 | base = None | |
440 | if repo[rev].rev() != repo[min(state)].rev(): |
|
447 | if repo[rev].rev() != repo[min(state)].rev(): | |
441 | base = repo[rev].p1().node() |
|
448 | base = repo[rev].p1().node() | |
442 | # When collapsing in-place, the parent is the common ancestor, we |
|
449 | # When collapsing in-place, the parent is the common ancestor, we | |
443 | # have to allow merging with it. |
|
450 | # have to allow merging with it. | |
444 | return merge.update(repo, rev, True, True, False, base, collapse) |
|
451 | return merge.update(repo, rev, True, True, False, base, collapse) | |
445 |
|
452 | |||
446 | def nearestrebased(repo, rev, state): |
|
453 | def nearestrebased(repo, rev, state): | |
447 | """return the nearest ancestors of rev in the rebase result""" |
|
454 | """return the nearest ancestors of rev in the rebase result""" | |
448 | rebased = [r for r in state if state[r] > nullmerge] |
|
455 | rebased = [r for r in state if state[r] > nullmerge] | |
449 | candidates = repo.revs('max(%ld and (::%d))', rebased, rev) |
|
456 | candidates = repo.revs('max(%ld and (::%d))', rebased, rev) | |
450 | if candidates: |
|
457 | if candidates: | |
451 | return state[candidates[0]] |
|
458 | return state[candidates[0]] | |
452 | else: |
|
459 | else: | |
453 | return None |
|
460 | return None | |
454 |
|
461 | |||
455 | def defineparents(repo, rev, target, state, targetancestors): |
|
462 | def defineparents(repo, rev, target, state, targetancestors): | |
456 | 'Return the new parent relationship of the revision that will be rebased' |
|
463 | 'Return the new parent relationship of the revision that will be rebased' | |
457 | parents = repo[rev].parents() |
|
464 | parents = repo[rev].parents() | |
458 | p1 = p2 = nullrev |
|
465 | p1 = p2 = nullrev | |
459 |
|
466 | |||
460 | P1n = parents[0].rev() |
|
467 | P1n = parents[0].rev() | |
461 | if P1n in targetancestors: |
|
468 | if P1n in targetancestors: | |
462 | p1 = target |
|
469 | p1 = target | |
463 | elif P1n in state: |
|
470 | elif P1n in state: | |
464 | if state[P1n] == nullmerge: |
|
471 | if state[P1n] == nullmerge: | |
465 | p1 = target |
|
472 | p1 = target | |
466 | elif state[P1n] == revignored: |
|
473 | elif state[P1n] == revignored: | |
467 | p1 = nearestrebased(repo, P1n, state) |
|
474 | p1 = nearestrebased(repo, P1n, state) | |
468 | if p1 is None: |
|
475 | if p1 is None: | |
469 | p1 = target |
|
476 | p1 = target | |
470 | else: |
|
477 | else: | |
471 | p1 = state[P1n] |
|
478 | p1 = state[P1n] | |
472 | else: # P1n external |
|
479 | else: # P1n external | |
473 | p1 = target |
|
480 | p1 = target | |
474 | p2 = P1n |
|
481 | p2 = P1n | |
475 |
|
482 | |||
476 | if len(parents) == 2 and parents[1].rev() not in targetancestors: |
|
483 | if len(parents) == 2 and parents[1].rev() not in targetancestors: | |
477 | P2n = parents[1].rev() |
|
484 | P2n = parents[1].rev() | |
478 | # interesting second parent |
|
485 | # interesting second parent | |
479 | if P2n in state: |
|
486 | if P2n in state: | |
480 | if p1 == target: # P1n in targetancestors or external |
|
487 | if p1 == target: # P1n in targetancestors or external | |
481 | p1 = state[P2n] |
|
488 | p1 = state[P2n] | |
482 | elif state[P2n] == revignored: |
|
489 | elif state[P2n] == revignored: | |
483 | p2 = nearestrebased(repo, P2n, state) |
|
490 | p2 = nearestrebased(repo, P2n, state) | |
484 | if p2 is None: |
|
491 | if p2 is None: | |
485 | # no ancestors rebased yet, detach |
|
492 | # no ancestors rebased yet, detach | |
486 | p2 = target |
|
493 | p2 = target | |
487 | else: |
|
494 | else: | |
488 | p2 = state[P2n] |
|
495 | p2 = state[P2n] | |
489 | else: # P2n external |
|
496 | else: # P2n external | |
490 | if p2 != nullrev: # P1n external too => rev is a merged revision |
|
497 | if p2 != nullrev: # P1n external too => rev is a merged revision | |
491 | raise util.Abort(_('cannot use revision %d as base, result ' |
|
498 | raise util.Abort(_('cannot use revision %d as base, result ' | |
492 | 'would have 3 parents') % rev) |
|
499 | 'would have 3 parents') % rev) | |
493 | p2 = P2n |
|
500 | p2 = P2n | |
494 | repo.ui.debug(" future parents are %d and %d\n" % |
|
501 | repo.ui.debug(" future parents are %d and %d\n" % | |
495 | (repo[p1].rev(), repo[p2].rev())) |
|
502 | (repo[p1].rev(), repo[p2].rev())) | |
496 | return p1, p2 |
|
503 | return p1, p2 | |
497 |
|
504 | |||
498 | def isagitpatch(repo, patchname): |
|
505 | def isagitpatch(repo, patchname): | |
499 | 'Return true if the given patch is in git format' |
|
506 | 'Return true if the given patch is in git format' | |
500 | mqpatch = os.path.join(repo.mq.path, patchname) |
|
507 | mqpatch = os.path.join(repo.mq.path, patchname) | |
501 | for line in patch.linereader(file(mqpatch, 'rb')): |
|
508 | for line in patch.linereader(file(mqpatch, 'rb')): | |
502 | if line.startswith('diff --git'): |
|
509 | if line.startswith('diff --git'): | |
503 | return True |
|
510 | return True | |
504 | return False |
|
511 | return False | |
505 |
|
512 | |||
506 | def updatemq(repo, state, skipped, **opts): |
|
513 | def updatemq(repo, state, skipped, **opts): | |
507 | 'Update rebased mq patches - finalize and then import them' |
|
514 | 'Update rebased mq patches - finalize and then import them' | |
508 | mqrebase = {} |
|
515 | mqrebase = {} | |
509 | mq = repo.mq |
|
516 | mq = repo.mq | |
510 | original_series = mq.fullseries[:] |
|
517 | original_series = mq.fullseries[:] | |
511 | skippedpatches = set() |
|
518 | skippedpatches = set() | |
512 |
|
519 | |||
513 | for p in mq.applied: |
|
520 | for p in mq.applied: | |
514 | rev = repo[p.node].rev() |
|
521 | rev = repo[p.node].rev() | |
515 | if rev in state: |
|
522 | if rev in state: | |
516 | repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' % |
|
523 | repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' % | |
517 | (rev, p.name)) |
|
524 | (rev, p.name)) | |
518 | mqrebase[rev] = (p.name, isagitpatch(repo, p.name)) |
|
525 | mqrebase[rev] = (p.name, isagitpatch(repo, p.name)) | |
519 | else: |
|
526 | else: | |
520 | # Applied but not rebased, not sure this should happen |
|
527 | # Applied but not rebased, not sure this should happen | |
521 | skippedpatches.add(p.name) |
|
528 | skippedpatches.add(p.name) | |
522 |
|
529 | |||
523 | if mqrebase: |
|
530 | if mqrebase: | |
524 | mq.finish(repo, mqrebase.keys()) |
|
531 | mq.finish(repo, mqrebase.keys()) | |
525 |
|
532 | |||
526 | # We must start import from the newest revision |
|
533 | # We must start import from the newest revision | |
527 | for rev in sorted(mqrebase, reverse=True): |
|
534 | for rev in sorted(mqrebase, reverse=True): | |
528 | if rev not in skipped: |
|
535 | if rev not in skipped: | |
529 | name, isgit = mqrebase[rev] |
|
536 | name, isgit = mqrebase[rev] | |
530 | repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name)) |
|
537 | repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name)) | |
531 | mq.qimport(repo, (), patchname=name, git=isgit, |
|
538 | mq.qimport(repo, (), patchname=name, git=isgit, | |
532 | rev=[str(state[rev])]) |
|
539 | rev=[str(state[rev])]) | |
533 | else: |
|
540 | else: | |
534 | # Rebased and skipped |
|
541 | # Rebased and skipped | |
535 | skippedpatches.add(mqrebase[rev][0]) |
|
542 | skippedpatches.add(mqrebase[rev][0]) | |
536 |
|
543 | |||
537 | # Patches were either applied and rebased and imported in |
|
544 | # Patches were either applied and rebased and imported in | |
538 | # order, applied and removed or unapplied. Discard the removed |
|
545 | # order, applied and removed or unapplied. Discard the removed | |
539 | # ones while preserving the original series order and guards. |
|
546 | # ones while preserving the original series order and guards. | |
540 | newseries = [s for s in original_series |
|
547 | newseries = [s for s in original_series | |
541 | if mq.guard_re.split(s, 1)[0] not in skippedpatches] |
|
548 | if mq.guard_re.split(s, 1)[0] not in skippedpatches] | |
542 | mq.fullseries[:] = newseries |
|
549 | mq.fullseries[:] = newseries | |
543 | mq.seriesdirty = True |
|
550 | mq.seriesdirty = True | |
544 | mq.savedirty() |
|
551 | mq.savedirty() | |
545 |
|
552 | |||
546 | def updatebookmarks(repo, targetnode, nstate, originalbookmarks): |
|
553 | def updatebookmarks(repo, targetnode, nstate, originalbookmarks): | |
547 | 'Move bookmarks to their correct changesets, and delete divergent ones' |
|
554 | 'Move bookmarks to their correct changesets, and delete divergent ones' | |
548 | marks = repo._bookmarks |
|
555 | marks = repo._bookmarks | |
549 | for k, v in originalbookmarks.iteritems(): |
|
556 | for k, v in originalbookmarks.iteritems(): | |
550 | if v in nstate: |
|
557 | if v in nstate: | |
551 | # update the bookmarks for revs that have moved |
|
558 | # update the bookmarks for revs that have moved | |
552 | marks[k] = nstate[v] |
|
559 | marks[k] = nstate[v] | |
553 | bookmarks.deletedivergent(repo, [targetnode], k) |
|
560 | bookmarks.deletedivergent(repo, [targetnode], k) | |
554 |
|
561 | |||
555 | marks.write() |
|
562 | marks.write() | |
556 |
|
563 | |||
557 | def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches, |
|
564 | def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches, | |
558 | external, activebookmark): |
|
565 | external, activebookmark): | |
559 | 'Store the current status to allow recovery' |
|
566 | 'Store the current status to allow recovery' | |
560 | f = repo.opener("rebasestate", "w") |
|
567 | f = repo.opener("rebasestate", "w") | |
561 | f.write(repo[originalwd].hex() + '\n') |
|
568 | f.write(repo[originalwd].hex() + '\n') | |
562 | f.write(repo[target].hex() + '\n') |
|
569 | f.write(repo[target].hex() + '\n') | |
563 | f.write(repo[external].hex() + '\n') |
|
570 | f.write(repo[external].hex() + '\n') | |
564 | f.write('%d\n' % int(collapse)) |
|
571 | f.write('%d\n' % int(collapse)) | |
565 | f.write('%d\n' % int(keep)) |
|
572 | f.write('%d\n' % int(keep)) | |
566 | f.write('%d\n' % int(keepbranches)) |
|
573 | f.write('%d\n' % int(keepbranches)) | |
567 | f.write('%s\n' % (activebookmark or '')) |
|
574 | f.write('%s\n' % (activebookmark or '')) | |
568 | for d, v in state.iteritems(): |
|
575 | for d, v in state.iteritems(): | |
569 | oldrev = repo[d].hex() |
|
576 | oldrev = repo[d].hex() | |
570 | if v > nullmerge: |
|
577 | if v > nullmerge: | |
571 | newrev = repo[v].hex() |
|
578 | newrev = repo[v].hex() | |
572 | else: |
|
579 | else: | |
573 | newrev = v |
|
580 | newrev = v | |
574 | f.write("%s:%s\n" % (oldrev, newrev)) |
|
581 | f.write("%s:%s\n" % (oldrev, newrev)) | |
575 | f.close() |
|
582 | f.close() | |
576 | repo.ui.debug('rebase status stored\n') |
|
583 | repo.ui.debug('rebase status stored\n') | |
577 |
|
584 | |||
578 | def clearstatus(repo): |
|
585 | def clearstatus(repo): | |
579 | 'Remove the status files' |
|
586 | 'Remove the status files' | |
580 | util.unlinkpath(repo.join("rebasestate"), ignoremissing=True) |
|
587 | util.unlinkpath(repo.join("rebasestate"), ignoremissing=True) | |
581 |
|
588 | |||
582 | def restorestatus(repo): |
|
589 | def restorestatus(repo): | |
583 | 'Restore a previously stored status' |
|
590 | 'Restore a previously stored status' | |
584 | try: |
|
591 | try: | |
585 | target = None |
|
592 | target = None | |
586 | collapse = False |
|
593 | collapse = False | |
587 | external = nullrev |
|
594 | external = nullrev | |
588 | activebookmark = None |
|
595 | activebookmark = None | |
589 | state = {} |
|
596 | state = {} | |
590 | f = repo.opener("rebasestate") |
|
597 | f = repo.opener("rebasestate") | |
591 | for i, l in enumerate(f.read().splitlines()): |
|
598 | for i, l in enumerate(f.read().splitlines()): | |
592 | if i == 0: |
|
599 | if i == 0: | |
593 | originalwd = repo[l].rev() |
|
600 | originalwd = repo[l].rev() | |
594 | elif i == 1: |
|
601 | elif i == 1: | |
595 | target = repo[l].rev() |
|
602 | target = repo[l].rev() | |
596 | elif i == 2: |
|
603 | elif i == 2: | |
597 | external = repo[l].rev() |
|
604 | external = repo[l].rev() | |
598 | elif i == 3: |
|
605 | elif i == 3: | |
599 | collapse = bool(int(l)) |
|
606 | collapse = bool(int(l)) | |
600 | elif i == 4: |
|
607 | elif i == 4: | |
601 | keep = bool(int(l)) |
|
608 | keep = bool(int(l)) | |
602 | elif i == 5: |
|
609 | elif i == 5: | |
603 | keepbranches = bool(int(l)) |
|
610 | keepbranches = bool(int(l)) | |
604 | elif i == 6 and not (len(l) == 81 and ':' in l): |
|
611 | elif i == 6 and not (len(l) == 81 and ':' in l): | |
605 | # line 6 is a recent addition, so for backwards compatibility |
|
612 | # line 6 is a recent addition, so for backwards compatibility | |
606 | # check that the line doesn't look like the oldrev:newrev lines |
|
613 | # check that the line doesn't look like the oldrev:newrev lines | |
607 | activebookmark = l |
|
614 | activebookmark = l | |
608 | else: |
|
615 | else: | |
609 | oldrev, newrev = l.split(':') |
|
616 | oldrev, newrev = l.split(':') | |
610 | if newrev in (str(nullmerge), str(revignored)): |
|
617 | if newrev in (str(nullmerge), str(revignored)): | |
611 | state[repo[oldrev].rev()] = int(newrev) |
|
618 | state[repo[oldrev].rev()] = int(newrev) | |
612 | else: |
|
619 | else: | |
613 | state[repo[oldrev].rev()] = repo[newrev].rev() |
|
620 | state[repo[oldrev].rev()] = repo[newrev].rev() | |
614 | skipped = set() |
|
621 | skipped = set() | |
615 | # recompute the set of skipped revs |
|
622 | # recompute the set of skipped revs | |
616 | if not collapse: |
|
623 | if not collapse: | |
617 | seen = set([target]) |
|
624 | seen = set([target]) | |
618 | for old, new in sorted(state.items()): |
|
625 | for old, new in sorted(state.items()): | |
619 | if new != nullrev and new in seen: |
|
626 | if new != nullrev and new in seen: | |
620 | skipped.add(old) |
|
627 | skipped.add(old) | |
621 | seen.add(new) |
|
628 | seen.add(new) | |
622 | repo.ui.debug('computed skipped revs: %s\n' % skipped) |
|
629 | repo.ui.debug('computed skipped revs: %s\n' % skipped) | |
623 | repo.ui.debug('rebase status resumed\n') |
|
630 | repo.ui.debug('rebase status resumed\n') | |
624 | return (originalwd, target, state, skipped, |
|
631 | return (originalwd, target, state, skipped, | |
625 | collapse, keep, keepbranches, external, activebookmark) |
|
632 | collapse, keep, keepbranches, external, activebookmark) | |
626 | except IOError, err: |
|
633 | except IOError, err: | |
627 | if err.errno != errno.ENOENT: |
|
634 | if err.errno != errno.ENOENT: | |
628 | raise |
|
635 | raise | |
629 | raise util.Abort(_('no rebase in progress')) |
|
636 | raise util.Abort(_('no rebase in progress')) | |
630 |
|
637 | |||
631 | def inrebase(repo, originalwd, state): |
|
638 | def inrebase(repo, originalwd, state): | |
632 | '''check whether the workdir is in an interrupted rebase''' |
|
639 | '''check whether the workdir is in an interrupted rebase''' | |
633 | parents = [p.rev() for p in repo.parents()] |
|
640 | parents = [p.rev() for p in repo.parents()] | |
634 | if originalwd in parents: |
|
641 | if originalwd in parents: | |
635 | return True |
|
642 | return True | |
636 |
|
643 | |||
637 | for newrev in state.itervalues(): |
|
644 | for newrev in state.itervalues(): | |
638 | if newrev in parents: |
|
645 | if newrev in parents: | |
639 | return True |
|
646 | return True | |
640 |
|
647 | |||
641 | return False |
|
648 | return False | |
642 |
|
649 | |||
643 | def abort(repo, originalwd, target, state): |
|
650 | def abort(repo, originalwd, target, state): | |
644 | 'Restore the repository to its original state' |
|
651 | 'Restore the repository to its original state' | |
645 | dstates = [s for s in state.values() if s != nullrev] |
|
652 | dstates = [s for s in state.values() if s != nullrev] | |
646 | immutable = [d for d in dstates if not repo[d].mutable()] |
|
653 | immutable = [d for d in dstates if not repo[d].mutable()] | |
647 | cleanup = True |
|
654 | cleanup = True | |
648 | if immutable: |
|
655 | if immutable: | |
649 | repo.ui.warn(_("warning: can't clean up immutable changesets %s\n") |
|
656 | repo.ui.warn(_("warning: can't clean up immutable changesets %s\n") | |
650 | % ', '.join(str(repo[r]) for r in immutable), |
|
657 | % ', '.join(str(repo[r]) for r in immutable), | |
651 | hint=_('see hg help phases for details')) |
|
658 | hint=_('see hg help phases for details')) | |
652 | cleanup = False |
|
659 | cleanup = False | |
653 |
|
660 | |||
654 | descendants = set() |
|
661 | descendants = set() | |
655 | if dstates: |
|
662 | if dstates: | |
656 | descendants = set(repo.changelog.descendants(dstates)) |
|
663 | descendants = set(repo.changelog.descendants(dstates)) | |
657 | if descendants - set(dstates): |
|
664 | if descendants - set(dstates): | |
658 | repo.ui.warn(_("warning: new changesets detected on target branch, " |
|
665 | repo.ui.warn(_("warning: new changesets detected on target branch, " | |
659 | "can't strip\n")) |
|
666 | "can't strip\n")) | |
660 | cleanup = False |
|
667 | cleanup = False | |
661 |
|
668 | |||
662 | if cleanup: |
|
669 | if cleanup: | |
663 | # Update away from the rebase if necessary |
|
670 | # Update away from the rebase if necessary | |
664 | if inrebase(repo, originalwd, state): |
|
671 | if inrebase(repo, originalwd, state): | |
665 | merge.update(repo, repo[originalwd].rev(), False, True, False) |
|
672 | merge.update(repo, repo[originalwd].rev(), False, True, False) | |
666 |
|
673 | |||
667 | # Strip from the first rebased revision |
|
674 | # Strip from the first rebased revision | |
668 | rebased = filter(lambda x: x > -1 and x != target, state.values()) |
|
675 | rebased = filter(lambda x: x > -1 and x != target, state.values()) | |
669 | if rebased: |
|
676 | if rebased: | |
670 | strippoints = [c.node() for c in repo.set('roots(%ld)', rebased)] |
|
677 | strippoints = [c.node() for c in repo.set('roots(%ld)', rebased)] | |
671 | # no backup of rebased cset versions needed |
|
678 | # no backup of rebased cset versions needed | |
672 | repair.strip(repo.ui, repo, strippoints) |
|
679 | repair.strip(repo.ui, repo, strippoints) | |
673 |
|
680 | |||
674 | clearstatus(repo) |
|
681 | clearstatus(repo) | |
675 | repo.ui.warn(_('rebase aborted\n')) |
|
682 | repo.ui.warn(_('rebase aborted\n')) | |
676 | return 0 |
|
683 | return 0 | |
677 |
|
684 | |||
678 | def buildstate(repo, dest, rebaseset, collapse): |
|
685 | def buildstate(repo, dest, rebaseset, collapse): | |
679 | '''Define which revisions are going to be rebased and where |
|
686 | '''Define which revisions are going to be rebased and where | |
680 |
|
687 | |||
681 | repo: repo |
|
688 | repo: repo | |
682 | dest: context |
|
689 | dest: context | |
683 | rebaseset: set of rev |
|
690 | rebaseset: set of rev | |
684 | ''' |
|
691 | ''' | |
685 |
|
692 | |||
686 | # This check isn't strictly necessary, since mq detects commits over an |
|
693 | # This check isn't strictly necessary, since mq detects commits over an | |
687 | # applied patch. But it prevents messing up the working directory when |
|
694 | # applied patch. But it prevents messing up the working directory when | |
688 | # a partially completed rebase is blocked by mq. |
|
695 | # a partially completed rebase is blocked by mq. | |
689 | if 'qtip' in repo.tags() and (dest.node() in |
|
696 | if 'qtip' in repo.tags() and (dest.node() in | |
690 | [s.node for s in repo.mq.applied]): |
|
697 | [s.node for s in repo.mq.applied]): | |
691 | raise util.Abort(_('cannot rebase onto an applied mq patch')) |
|
698 | raise util.Abort(_('cannot rebase onto an applied mq patch')) | |
692 |
|
699 | |||
693 | roots = list(repo.set('roots(%ld)', rebaseset)) |
|
700 | roots = list(repo.set('roots(%ld)', rebaseset)) | |
694 | if not roots: |
|
701 | if not roots: | |
695 | raise util.Abort(_('no matching revisions')) |
|
702 | raise util.Abort(_('no matching revisions')) | |
696 | roots.sort() |
|
703 | roots.sort() | |
697 | state = {} |
|
704 | state = {} | |
698 | detachset = set() |
|
705 | detachset = set() | |
699 | for root in roots: |
|
706 | for root in roots: | |
700 | commonbase = root.ancestor(dest) |
|
707 | commonbase = root.ancestor(dest) | |
701 | if commonbase == root: |
|
708 | if commonbase == root: | |
702 | raise util.Abort(_('source is ancestor of destination')) |
|
709 | raise util.Abort(_('source is ancestor of destination')) | |
703 | if commonbase == dest: |
|
710 | if commonbase == dest: | |
704 | samebranch = root.branch() == dest.branch() |
|
711 | samebranch = root.branch() == dest.branch() | |
705 | if not collapse and samebranch and root in dest.children(): |
|
712 | if not collapse and samebranch and root in dest.children(): | |
706 | repo.ui.debug('source is a child of destination\n') |
|
713 | repo.ui.debug('source is a child of destination\n') | |
707 | return None |
|
714 | return None | |
708 |
|
715 | |||
709 | repo.ui.debug('rebase onto %d starting from %s\n' % (dest, roots)) |
|
716 | repo.ui.debug('rebase onto %d starting from %s\n' % (dest, roots)) | |
710 | state.update(dict.fromkeys(rebaseset, nullrev)) |
|
717 | state.update(dict.fromkeys(rebaseset, nullrev)) | |
711 | # Rebase tries to turn <dest> into a parent of <root> while |
|
718 | # Rebase tries to turn <dest> into a parent of <root> while | |
712 | # preserving the number of parents of rebased changesets: |
|
719 | # preserving the number of parents of rebased changesets: | |
713 | # |
|
720 | # | |
714 | # - A changeset with a single parent will always be rebased as a |
|
721 | # - A changeset with a single parent will always be rebased as a | |
715 | # changeset with a single parent. |
|
722 | # changeset with a single parent. | |
716 | # |
|
723 | # | |
717 | # - A merge will be rebased as merge unless its parents are both |
|
724 | # - A merge will be rebased as merge unless its parents are both | |
718 | # ancestors of <dest> or are themselves in the rebased set and |
|
725 | # ancestors of <dest> or are themselves in the rebased set and | |
719 | # pruned while rebased. |
|
726 | # pruned while rebased. | |
720 | # |
|
727 | # | |
721 | # If one parent of <root> is an ancestor of <dest>, the rebased |
|
728 | # If one parent of <root> is an ancestor of <dest>, the rebased | |
722 | # version of this parent will be <dest>. This is always true with |
|
729 | # version of this parent will be <dest>. This is always true with | |
723 | # --base option. |
|
730 | # --base option. | |
724 | # |
|
731 | # | |
725 | # Otherwise, we need to *replace* the original parents with |
|
732 | # Otherwise, we need to *replace* the original parents with | |
726 | # <dest>. This "detaches" the rebased set from its former location |
|
733 | # <dest>. This "detaches" the rebased set from its former location | |
727 | # and rebases it onto <dest>. Changes introduced by ancestors of |
|
734 | # and rebases it onto <dest>. Changes introduced by ancestors of | |
728 | # <root> not common with <dest> (the detachset, marked as |
|
735 | # <root> not common with <dest> (the detachset, marked as | |
729 | # nullmerge) are "removed" from the rebased changesets. |
|
736 | # nullmerge) are "removed" from the rebased changesets. | |
730 | # |
|
737 | # | |
731 | # - If <root> has a single parent, set it to <dest>. |
|
738 | # - If <root> has a single parent, set it to <dest>. | |
732 | # |
|
739 | # | |
733 | # - If <root> is a merge, we cannot decide which parent to |
|
740 | # - If <root> is a merge, we cannot decide which parent to | |
734 | # replace, the rebase operation is not clearly defined. |
|
741 | # replace, the rebase operation is not clearly defined. | |
735 | # |
|
742 | # | |
736 | # The table below sums up this behavior: |
|
743 | # The table below sums up this behavior: | |
737 | # |
|
744 | # | |
738 | # +------------------+----------------------+-------------------------+ |
|
745 | # +------------------+----------------------+-------------------------+ | |
739 | # | | one parent | merge | |
|
746 | # | | one parent | merge | | |
740 | # +------------------+----------------------+-------------------------+ |
|
747 | # +------------------+----------------------+-------------------------+ | |
741 | # | parent in | new parent is <dest> | parents in ::<dest> are | |
|
748 | # | parent in | new parent is <dest> | parents in ::<dest> are | | |
742 | # | ::<dest> | | remapped to <dest> | |
|
749 | # | ::<dest> | | remapped to <dest> | | |
743 | # +------------------+----------------------+-------------------------+ |
|
750 | # +------------------+----------------------+-------------------------+ | |
744 | # | unrelated source | new parent is <dest> | ambiguous, abort | |
|
751 | # | unrelated source | new parent is <dest> | ambiguous, abort | | |
745 | # +------------------+----------------------+-------------------------+ |
|
752 | # +------------------+----------------------+-------------------------+ | |
746 | # |
|
753 | # | |
747 | # The actual abort is handled by `defineparents` |
|
754 | # The actual abort is handled by `defineparents` | |
748 | if len(root.parents()) <= 1: |
|
755 | if len(root.parents()) <= 1: | |
749 | # ancestors of <root> not ancestors of <dest> |
|
756 | # ancestors of <root> not ancestors of <dest> | |
750 | detachset.update(repo.changelog.findmissingrevs([commonbase.rev()], |
|
757 | detachset.update(repo.changelog.findmissingrevs([commonbase.rev()], | |
751 | [root.rev()])) |
|
758 | [root.rev()])) | |
752 | for r in detachset: |
|
759 | for r in detachset: | |
753 | if r not in state: |
|
760 | if r not in state: | |
754 | state[r] = nullmerge |
|
761 | state[r] = nullmerge | |
755 | if len(roots) > 1: |
|
762 | if len(roots) > 1: | |
756 | # If we have multiple roots, we may have "hole" in the rebase set. |
|
763 | # If we have multiple roots, we may have "hole" in the rebase set. | |
757 | # Rebase roots that descend from those "hole" should not be detached as |
|
764 | # Rebase roots that descend from those "hole" should not be detached as | |
758 | # other root are. We use the special `revignored` to inform rebase that |
|
765 | # other root are. We use the special `revignored` to inform rebase that | |
759 | # the revision should be ignored but that `defineparents` should search |
|
766 | # the revision should be ignored but that `defineparents` should search | |
760 | # a rebase destination that make sense regarding rebased topology. |
|
767 | # a rebase destination that make sense regarding rebased topology. | |
761 | rebasedomain = set(repo.revs('%ld::%ld', rebaseset, rebaseset)) |
|
768 | rebasedomain = set(repo.revs('%ld::%ld', rebaseset, rebaseset)) | |
762 | for ignored in set(rebasedomain) - set(rebaseset): |
|
769 | for ignored in set(rebasedomain) - set(rebaseset): | |
763 | state[ignored] = revignored |
|
770 | state[ignored] = revignored | |
764 | return repo['.'].rev(), dest.rev(), state |
|
771 | return repo['.'].rev(), dest.rev(), state | |
765 |
|
772 | |||
766 | def clearrebased(ui, repo, state, skipped, collapsedas=None): |
|
773 | def clearrebased(ui, repo, state, skipped, collapsedas=None): | |
767 | """dispose of rebased revision at the end of the rebase |
|
774 | """dispose of rebased revision at the end of the rebase | |
768 |
|
775 | |||
769 | If `collapsedas` is not None, the rebase was a collapse whose result if the |
|
776 | If `collapsedas` is not None, the rebase was a collapse whose result if the | |
770 | `collapsedas` node.""" |
|
777 | `collapsedas` node.""" | |
771 | if obsolete._enabled: |
|
778 | if obsolete._enabled: | |
772 | markers = [] |
|
779 | markers = [] | |
773 | for rev, newrev in sorted(state.items()): |
|
780 | for rev, newrev in sorted(state.items()): | |
774 | if newrev >= 0: |
|
781 | if newrev >= 0: | |
775 | if rev in skipped: |
|
782 | if rev in skipped: | |
776 | succs = () |
|
783 | succs = () | |
777 | elif collapsedas is not None: |
|
784 | elif collapsedas is not None: | |
778 | succs = (repo[collapsedas],) |
|
785 | succs = (repo[collapsedas],) | |
779 | else: |
|
786 | else: | |
780 | succs = (repo[newrev],) |
|
787 | succs = (repo[newrev],) | |
781 | markers.append((repo[rev], succs)) |
|
788 | markers.append((repo[rev], succs)) | |
782 | if markers: |
|
789 | if markers: | |
783 | obsolete.createmarkers(repo, markers) |
|
790 | obsolete.createmarkers(repo, markers) | |
784 | else: |
|
791 | else: | |
785 | rebased = [rev for rev in state if state[rev] > nullmerge] |
|
792 | rebased = [rev for rev in state if state[rev] > nullmerge] | |
786 | if rebased: |
|
793 | if rebased: | |
787 | stripped = [] |
|
794 | stripped = [] | |
788 | for root in repo.set('roots(%ld)', rebased): |
|
795 | for root in repo.set('roots(%ld)', rebased): | |
789 | if set(repo.changelog.descendants([root.rev()])) - set(state): |
|
796 | if set(repo.changelog.descendants([root.rev()])) - set(state): | |
790 | ui.warn(_("warning: new changesets detected " |
|
797 | ui.warn(_("warning: new changesets detected " | |
791 | "on source branch, not stripping\n")) |
|
798 | "on source branch, not stripping\n")) | |
792 | else: |
|
799 | else: | |
793 | stripped.append(root.node()) |
|
800 | stripped.append(root.node()) | |
794 | if stripped: |
|
801 | if stripped: | |
795 | # backup the old csets by default |
|
802 | # backup the old csets by default | |
796 | repair.strip(ui, repo, stripped, "all") |
|
803 | repair.strip(ui, repo, stripped, "all") | |
797 |
|
804 | |||
798 |
|
805 | |||
799 | def pullrebase(orig, ui, repo, *args, **opts): |
|
806 | def pullrebase(orig, ui, repo, *args, **opts): | |
800 | 'Call rebase after pull if the latter has been invoked with --rebase' |
|
807 | 'Call rebase after pull if the latter has been invoked with --rebase' | |
801 | if opts.get('rebase'): |
|
808 | if opts.get('rebase'): | |
802 | if opts.get('update'): |
|
809 | if opts.get('update'): | |
803 | del opts['update'] |
|
810 | del opts['update'] | |
804 | ui.debug('--update and --rebase are not compatible, ignoring ' |
|
811 | ui.debug('--update and --rebase are not compatible, ignoring ' | |
805 | 'the update flag\n') |
|
812 | 'the update flag\n') | |
806 |
|
813 | |||
807 | movemarkfrom = repo['.'].node() |
|
814 | movemarkfrom = repo['.'].node() | |
808 | revsprepull = len(repo) |
|
815 | revsprepull = len(repo) | |
809 | origpostincoming = commands.postincoming |
|
816 | origpostincoming = commands.postincoming | |
810 | def _dummy(*args, **kwargs): |
|
817 | def _dummy(*args, **kwargs): | |
811 | pass |
|
818 | pass | |
812 | commands.postincoming = _dummy |
|
819 | commands.postincoming = _dummy | |
813 | try: |
|
820 | try: | |
814 | orig(ui, repo, *args, **opts) |
|
821 | orig(ui, repo, *args, **opts) | |
815 | finally: |
|
822 | finally: | |
816 | commands.postincoming = origpostincoming |
|
823 | commands.postincoming = origpostincoming | |
817 | revspostpull = len(repo) |
|
824 | revspostpull = len(repo) | |
818 | if revspostpull > revsprepull: |
|
825 | if revspostpull > revsprepull: | |
819 | # --rev option from pull conflict with rebase own --rev |
|
826 | # --rev option from pull conflict with rebase own --rev | |
820 | # dropping it |
|
827 | # dropping it | |
821 | if 'rev' in opts: |
|
828 | if 'rev' in opts: | |
822 | del opts['rev'] |
|
829 | del opts['rev'] | |
823 | rebase(ui, repo, **opts) |
|
830 | rebase(ui, repo, **opts) | |
824 | branch = repo[None].branch() |
|
831 | branch = repo[None].branch() | |
825 | dest = repo[branch].rev() |
|
832 | dest = repo[branch].rev() | |
826 | if dest != repo['.'].rev(): |
|
833 | if dest != repo['.'].rev(): | |
827 | # there was nothing to rebase we force an update |
|
834 | # there was nothing to rebase we force an update | |
828 | hg.update(repo, dest) |
|
835 | hg.update(repo, dest) | |
829 | if bookmarks.update(repo, [movemarkfrom], repo['.'].node()): |
|
836 | if bookmarks.update(repo, [movemarkfrom], repo['.'].node()): | |
830 | ui.status(_("updating bookmark %s\n") |
|
837 | ui.status(_("updating bookmark %s\n") | |
831 | % repo._bookmarkcurrent) |
|
838 | % repo._bookmarkcurrent) | |
832 | else: |
|
839 | else: | |
833 | if opts.get('tool'): |
|
840 | if opts.get('tool'): | |
834 | raise util.Abort(_('--tool can only be used with --rebase')) |
|
841 | raise util.Abort(_('--tool can only be used with --rebase')) | |
835 | orig(ui, repo, *args, **opts) |
|
842 | orig(ui, repo, *args, **opts) | |
836 |
|
843 | |||
837 | def summaryhook(ui, repo): |
|
844 | def summaryhook(ui, repo): | |
838 | if not os.path.exists(repo.join('rebasestate')): |
|
845 | if not os.path.exists(repo.join('rebasestate')): | |
839 | return |
|
846 | return | |
840 | try: |
|
847 | try: | |
841 | state = restorestatus(repo)[2] |
|
848 | state = restorestatus(repo)[2] | |
842 | except error.RepoLookupError: |
|
849 | except error.RepoLookupError: | |
843 | # i18n: column positioning for "hg summary" |
|
850 | # i18n: column positioning for "hg summary" | |
844 | msg = _('rebase: (use "hg rebase --abort" to clear broken state)\n') |
|
851 | msg = _('rebase: (use "hg rebase --abort" to clear broken state)\n') | |
845 | ui.write(msg) |
|
852 | ui.write(msg) | |
846 | return |
|
853 | return | |
847 | numrebased = len([i for i in state.itervalues() if i != -1]) |
|
854 | numrebased = len([i for i in state.itervalues() if i != -1]) | |
848 | # i18n: column positioning for "hg summary" |
|
855 | # i18n: column positioning for "hg summary" | |
849 | ui.write(_('rebase: %s, %s (rebase --continue)\n') % |
|
856 | ui.write(_('rebase: %s, %s (rebase --continue)\n') % | |
850 | (ui.label(_('%d rebased'), 'rebase.rebased') % numrebased, |
|
857 | (ui.label(_('%d rebased'), 'rebase.rebased') % numrebased, | |
851 | ui.label(_('%d remaining'), 'rebase.remaining') % |
|
858 | ui.label(_('%d remaining'), 'rebase.remaining') % | |
852 | (len(state) - numrebased))) |
|
859 | (len(state) - numrebased))) | |
853 |
|
860 | |||
854 | def uisetup(ui): |
|
861 | def uisetup(ui): | |
855 | 'Replace pull with a decorator to provide --rebase option' |
|
862 | 'Replace pull with a decorator to provide --rebase option' | |
856 | entry = extensions.wrapcommand(commands.table, 'pull', pullrebase) |
|
863 | entry = extensions.wrapcommand(commands.table, 'pull', pullrebase) | |
857 | entry[1].append(('', 'rebase', None, |
|
864 | entry[1].append(('', 'rebase', None, | |
858 | _("rebase working directory to branch head"))) |
|
865 | _("rebase working directory to branch head"))) | |
859 | entry[1].append(('t', 'tool', '', |
|
866 | entry[1].append(('t', 'tool', '', | |
860 | _("specify merge tool for rebase"))) |
|
867 | _("specify merge tool for rebase"))) | |
861 | cmdutil.summaryhooks.add('rebase', summaryhook) |
|
868 | cmdutil.summaryhooks.add('rebase', summaryhook) | |
862 | cmdutil.unfinishedstates.append( |
|
869 | cmdutil.unfinishedstates.append( | |
863 | ['rebasestate', False, False, _('rebase in progress'), |
|
870 | ['rebasestate', False, False, _('rebase in progress'), | |
864 | _("use 'hg rebase --continue' or 'hg rebase --abort'")]) |
|
871 | _("use 'hg rebase --continue' or 'hg rebase --abort'")]) |
@@ -1,176 +1,176 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' bookmarks: {bookmarks}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' bookmarks: {bookmarks}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 | Create a repo with several bookmarks |
|
13 | Create a repo with several bookmarks | |
14 | $ hg init a |
|
14 | $ hg init a | |
15 | $ cd a |
|
15 | $ cd a | |
16 |
|
16 | |||
17 | $ echo a > a |
|
17 | $ echo a > a | |
18 | $ hg ci -Am A |
|
18 | $ hg ci -Am A | |
19 | adding a |
|
19 | adding a | |
20 |
|
20 | |||
21 | $ echo b > b |
|
21 | $ echo b > b | |
22 | $ hg ci -Am B |
|
22 | $ hg ci -Am B | |
23 | adding b |
|
23 | adding b | |
24 | $ hg book 'X' |
|
24 | $ hg book 'X' | |
25 | $ hg book 'Y' |
|
25 | $ hg book 'Y' | |
26 |
|
26 | |||
27 | $ echo c > c |
|
27 | $ echo c > c | |
28 | $ hg ci -Am C |
|
28 | $ hg ci -Am C | |
29 | adding c |
|
29 | adding c | |
30 | $ hg book 'Z' |
|
30 | $ hg book 'Z' | |
31 |
|
31 | |||
32 | $ hg up -q 0 |
|
32 | $ hg up -q 0 | |
33 |
|
33 | |||
34 | $ echo d > d |
|
34 | $ echo d > d | |
35 | $ hg ci -Am D |
|
35 | $ hg ci -Am D | |
36 | adding d |
|
36 | adding d | |
37 | created new head |
|
37 | created new head | |
38 |
|
38 | |||
39 | $ hg book W |
|
39 | $ hg book W | |
40 |
|
40 | |||
41 | $ hg tglog |
|
41 | $ hg tglog | |
42 | @ 3: 'D' bookmarks: W |
|
42 | @ 3: 'D' bookmarks: W | |
43 | | |
|
43 | | | |
44 | | o 2: 'C' bookmarks: Y Z |
|
44 | | o 2: 'C' bookmarks: Y Z | |
45 | | | |
|
45 | | | | |
46 | | o 1: 'B' bookmarks: X |
|
46 | | o 1: 'B' bookmarks: X | |
47 | |/ |
|
47 | |/ | |
48 | o 0: 'A' bookmarks: |
|
48 | o 0: 'A' bookmarks: | |
49 |
|
49 | |||
50 |
|
50 | |||
51 | Move only rebased bookmarks |
|
51 | Move only rebased bookmarks | |
52 |
|
52 | |||
53 | $ cd .. |
|
53 | $ cd .. | |
54 | $ hg clone -q a a1 |
|
54 | $ hg clone -q a a1 | |
55 |
|
55 | |||
56 | $ cd a1 |
|
56 | $ cd a1 | |
57 | $ hg up -q Z |
|
57 | $ hg up -q Z | |
58 |
|
58 | |||
59 | Test deleting divergent bookmarks from dest (issue3685) |
|
59 | Test deleting divergent bookmarks from dest (issue3685) | |
60 |
|
60 | |||
61 | $ hg book -r 3 Z@diverge |
|
61 | $ hg book -r 3 Z@diverge | |
62 |
|
62 | |||
63 | ... and also test that bookmarks not on dest or not being moved aren't deleted |
|
63 | ... and also test that bookmarks not on dest or not being moved aren't deleted | |
64 |
|
64 | |||
65 | $ hg book -r 3 X@diverge |
|
65 | $ hg book -r 3 X@diverge | |
66 | $ hg book -r 0 Y@diverge |
|
66 | $ hg book -r 0 Y@diverge | |
67 |
|
67 | |||
68 | $ hg tglog |
|
68 | $ hg tglog | |
69 | o 3: 'D' bookmarks: W X@diverge Z@diverge |
|
69 | o 3: 'D' bookmarks: W X@diverge Z@diverge | |
70 | | |
|
70 | | | |
71 | | @ 2: 'C' bookmarks: Y Z |
|
71 | | @ 2: 'C' bookmarks: Y Z | |
72 | | | |
|
72 | | | | |
73 | | o 1: 'B' bookmarks: X |
|
73 | | o 1: 'B' bookmarks: X | |
74 | |/ |
|
74 | |/ | |
75 | o 0: 'A' bookmarks: Y@diverge |
|
75 | o 0: 'A' bookmarks: Y@diverge | |
76 |
|
76 | |||
77 | $ hg rebase -s Y -d 3 |
|
77 | $ hg rebase -s Y -d 3 | |
78 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
78 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
79 |
|
79 | |||
80 | $ hg tglog |
|
80 | $ hg tglog | |
81 | @ 3: 'C' bookmarks: Y Z |
|
81 | @ 3: 'C' bookmarks: Y Z | |
82 | | |
|
82 | | | |
83 | o 2: 'D' bookmarks: W X@diverge |
|
83 | o 2: 'D' bookmarks: W X@diverge | |
84 | | |
|
84 | | | |
85 | | o 1: 'B' bookmarks: X |
|
85 | | o 1: 'B' bookmarks: X | |
86 | |/ |
|
86 | |/ | |
87 | o 0: 'A' bookmarks: Y@diverge |
|
87 | o 0: 'A' bookmarks: Y@diverge | |
88 |
|
88 | |||
89 | Keep bookmarks to the correct rebased changeset |
|
89 | Keep bookmarks to the correct rebased changeset | |
90 |
|
90 | |||
91 | $ cd .. |
|
91 | $ cd .. | |
92 | $ hg clone -q a a2 |
|
92 | $ hg clone -q a a2 | |
93 |
|
93 | |||
94 | $ cd a2 |
|
94 | $ cd a2 | |
95 | $ hg up -q Z |
|
95 | $ hg up -q Z | |
96 |
|
96 | |||
97 | $ hg rebase -s 1 -d 3 |
|
97 | $ hg rebase -s 1 -d 3 | |
98 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
98 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
99 |
|
99 | |||
100 | $ hg tglog |
|
100 | $ hg tglog | |
101 | @ 3: 'C' bookmarks: Y Z |
|
101 | @ 3: 'C' bookmarks: Y Z | |
102 | | |
|
102 | | | |
103 | o 2: 'B' bookmarks: X |
|
103 | o 2: 'B' bookmarks: X | |
104 | | |
|
104 | | | |
105 | o 1: 'D' bookmarks: W |
|
105 | o 1: 'D' bookmarks: W | |
106 | | |
|
106 | | | |
107 | o 0: 'A' bookmarks: |
|
107 | o 0: 'A' bookmarks: | |
108 |
|
108 | |||
109 |
|
109 | |||
110 | Keep active bookmark on the correct changeset |
|
110 | Keep active bookmark on the correct changeset | |
111 |
|
111 | |||
112 | $ cd .. |
|
112 | $ cd .. | |
113 | $ hg clone -q a a3 |
|
113 | $ hg clone -q a a3 | |
114 |
|
114 | |||
115 | $ cd a3 |
|
115 | $ cd a3 | |
116 | $ hg up -q X |
|
116 | $ hg up -q X | |
117 |
|
117 | |||
118 | $ hg rebase -d W |
|
118 | $ hg rebase -d W | |
119 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
119 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
120 |
|
120 | |||
121 | $ hg tglog |
|
121 | $ hg tglog | |
122 |
|
|
122 | o 3: 'C' bookmarks: Y Z | |
123 | | |
|
123 | | | |
124 |
|
|
124 | @ 2: 'B' bookmarks: X | |
125 | | |
|
125 | | | |
126 | o 1: 'D' bookmarks: W |
|
126 | o 1: 'D' bookmarks: W | |
127 | | |
|
127 | | | |
128 | o 0: 'A' bookmarks: |
|
128 | o 0: 'A' bookmarks: | |
129 |
|
129 | |||
130 | rebase --continue with bookmarks present (issue3802) |
|
130 | rebase --continue with bookmarks present (issue3802) | |
131 |
|
131 | |||
132 | $ hg up 2 |
|
132 | $ hg up 2 | |
133 |
0 files updated, 0 files merged, |
|
133 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
134 | $ echo 'C' > c |
|
134 | $ echo 'C' > c | |
135 | $ hg add c |
|
135 | $ hg add c | |
136 | $ hg ci -m 'other C' |
|
136 | $ hg ci -m 'other C' | |
137 | created new head |
|
137 | created new head | |
138 | $ hg up 3 |
|
138 | $ hg up 3 | |
139 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
139 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
140 | $ hg rebase |
|
140 | $ hg rebase | |
141 | merging c |
|
141 | merging c | |
142 | warning: conflicts during merge. |
|
142 | warning: conflicts during merge. | |
143 | merging c incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
143 | merging c incomplete! (edit conflicts, then use 'hg resolve --mark') | |
144 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
144 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
145 | [1] |
|
145 | [1] | |
146 | $ echo 'c' > c |
|
146 | $ echo 'c' > c | |
147 | $ hg resolve --mark c |
|
147 | $ hg resolve --mark c | |
148 | $ hg rebase --continue |
|
148 | $ hg rebase --continue | |
149 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/3d5fa227f4b5-backup.hg (glob) |
|
149 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/3d5fa227f4b5-backup.hg (glob) | |
150 | $ hg tglog |
|
150 | $ hg tglog | |
151 | @ 4: 'C' bookmarks: Y Z |
|
151 | @ 4: 'C' bookmarks: Y Z | |
152 | | |
|
152 | | | |
153 | o 3: 'other C' bookmarks: |
|
153 | o 3: 'other C' bookmarks: | |
154 | | |
|
154 | | | |
155 | o 2: 'B' bookmarks: X |
|
155 | o 2: 'B' bookmarks: X | |
156 | | |
|
156 | | | |
157 | o 1: 'D' bookmarks: W |
|
157 | o 1: 'D' bookmarks: W | |
158 | | |
|
158 | | | |
159 | o 0: 'A' bookmarks: |
|
159 | o 0: 'A' bookmarks: | |
160 |
|
160 | |||
161 |
|
161 | |||
162 | ensure that bookmarks given the names of revset functions can be used |
|
162 | ensure that bookmarks given the names of revset functions can be used | |
163 | as --rev arguments (issue3950) |
|
163 | as --rev arguments (issue3950) | |
164 |
|
164 | |||
165 | $ hg update -q 3 |
|
165 | $ hg update -q 3 | |
166 | $ echo bimble > bimble |
|
166 | $ echo bimble > bimble | |
167 | $ hg add bimble |
|
167 | $ hg add bimble | |
168 | $ hg commit -q -m 'bisect' |
|
168 | $ hg commit -q -m 'bisect' | |
169 | $ echo e >> bimble |
|
169 | $ echo e >> bimble | |
170 | $ hg ci -m bisect2 |
|
170 | $ hg ci -m bisect2 | |
171 | $ echo e >> bimble |
|
171 | $ echo e >> bimble | |
172 | $ hg ci -m bisect3 |
|
172 | $ hg ci -m bisect3 | |
173 | $ hg book bisect |
|
173 | $ hg book bisect | |
174 | $ hg update -q Y |
|
174 | $ hg update -q Y | |
175 | $ hg rebase -r '"bisect"^^::"bisect"^' -r bisect -d Z |
|
175 | $ hg rebase -r '"bisect"^^::"bisect"^' -r bisect -d Z | |
176 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/345c90f326a4-backup.hg (glob) |
|
176 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/345c90f326a4-backup.hg (glob) |
@@ -1,475 +1,475 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > mq= |
|
5 | > mq= | |
6 | > |
|
6 | > | |
7 | > [phases] |
|
7 | > [phases] | |
8 | > publish=False |
|
8 | > publish=False | |
9 | > |
|
9 | > | |
10 | > [alias] |
|
10 | > [alias] | |
11 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
11 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
12 | > theads = heads --template "{rev}: '{desc}' {branches}\n" |
|
12 | > theads = heads --template "{rev}: '{desc}' {branches}\n" | |
13 | > EOF |
|
13 | > EOF | |
14 |
|
14 | |||
15 | $ hg init a |
|
15 | $ hg init a | |
16 | $ cd a |
|
16 | $ cd a | |
17 |
|
17 | |||
18 | $ echo a > a |
|
18 | $ echo a > a | |
19 | $ hg ci -Am A |
|
19 | $ hg ci -Am A | |
20 | adding a |
|
20 | adding a | |
21 |
|
21 | |||
22 | $ hg branch branch1 |
|
22 | $ hg branch branch1 | |
23 | marked working directory as branch branch1 |
|
23 | marked working directory as branch branch1 | |
24 | (branches are permanent and global, did you want a bookmark?) |
|
24 | (branches are permanent and global, did you want a bookmark?) | |
25 | $ hg ci -m 'branch1' |
|
25 | $ hg ci -m 'branch1' | |
26 |
|
26 | |||
27 | $ echo b > b |
|
27 | $ echo b > b | |
28 | $ hg ci -Am B |
|
28 | $ hg ci -Am B | |
29 | adding b |
|
29 | adding b | |
30 |
|
30 | |||
31 | $ hg up -q 0 |
|
31 | $ hg up -q 0 | |
32 |
|
32 | |||
33 | $ hg branch branch2 |
|
33 | $ hg branch branch2 | |
34 | marked working directory as branch branch2 |
|
34 | marked working directory as branch branch2 | |
35 | (branches are permanent and global, did you want a bookmark?) |
|
35 | (branches are permanent and global, did you want a bookmark?) | |
36 | $ hg ci -m 'branch2' |
|
36 | $ hg ci -m 'branch2' | |
37 |
|
37 | |||
38 | $ echo c > C |
|
38 | $ echo c > C | |
39 | $ hg ci -Am C |
|
39 | $ hg ci -Am C | |
40 | adding C |
|
40 | adding C | |
41 |
|
41 | |||
42 | $ hg up -q 2 |
|
42 | $ hg up -q 2 | |
43 |
|
43 | |||
44 | $ hg branch -f branch2 |
|
44 | $ hg branch -f branch2 | |
45 | marked working directory as branch branch2 |
|
45 | marked working directory as branch branch2 | |
46 | (branches are permanent and global, did you want a bookmark?) |
|
46 | (branches are permanent and global, did you want a bookmark?) | |
47 | $ echo d > d |
|
47 | $ echo d > d | |
48 | $ hg ci -Am D |
|
48 | $ hg ci -Am D | |
49 | adding d |
|
49 | adding d | |
50 | created new head |
|
50 | created new head | |
51 |
|
51 | |||
52 | $ echo e > e |
|
52 | $ echo e > e | |
53 | $ hg ci -Am E |
|
53 | $ hg ci -Am E | |
54 | adding e |
|
54 | adding e | |
55 |
|
55 | |||
56 | $ hg update default |
|
56 | $ hg update default | |
57 | 0 files updated, 0 files merged, 3 files removed, 0 files unresolved |
|
57 | 0 files updated, 0 files merged, 3 files removed, 0 files unresolved | |
58 |
|
58 | |||
59 | $ hg branch branch3 |
|
59 | $ hg branch branch3 | |
60 | marked working directory as branch branch3 |
|
60 | marked working directory as branch branch3 | |
61 | (branches are permanent and global, did you want a bookmark?) |
|
61 | (branches are permanent and global, did you want a bookmark?) | |
62 | $ hg ci -m 'branch3' |
|
62 | $ hg ci -m 'branch3' | |
63 |
|
63 | |||
64 | $ echo f > f |
|
64 | $ echo f > f | |
65 | $ hg ci -Am F |
|
65 | $ hg ci -Am F | |
66 | adding f |
|
66 | adding f | |
67 |
|
67 | |||
68 | $ cd .. |
|
68 | $ cd .. | |
69 |
|
69 | |||
70 |
|
70 | |||
71 | Rebase part of branch2 (5-6) onto branch3 (8): |
|
71 | Rebase part of branch2 (5-6) onto branch3 (8): | |
72 |
|
72 | |||
73 | $ hg clone -q -u . a a1 |
|
73 | $ hg clone -q -u . a a1 | |
74 | $ cd a1 |
|
74 | $ cd a1 | |
75 |
|
75 | |||
76 | $ hg tglog |
|
76 | $ hg tglog | |
77 | @ 8: 'F' branch3 |
|
77 | @ 8: 'F' branch3 | |
78 | | |
|
78 | | | |
79 | o 7: 'branch3' branch3 |
|
79 | o 7: 'branch3' branch3 | |
80 | | |
|
80 | | | |
81 | | o 6: 'E' branch2 |
|
81 | | o 6: 'E' branch2 | |
82 | | | |
|
82 | | | | |
83 | | o 5: 'D' branch2 |
|
83 | | o 5: 'D' branch2 | |
84 | | | |
|
84 | | | | |
85 | | | o 4: 'C' branch2 |
|
85 | | | o 4: 'C' branch2 | |
86 | | | | |
|
86 | | | | | |
87 | +---o 3: 'branch2' branch2 |
|
87 | +---o 3: 'branch2' branch2 | |
88 | | | |
|
88 | | | | |
89 | | o 2: 'B' branch1 |
|
89 | | o 2: 'B' branch1 | |
90 | | | |
|
90 | | | | |
91 | | o 1: 'branch1' branch1 |
|
91 | | o 1: 'branch1' branch1 | |
92 | |/ |
|
92 | |/ | |
93 | o 0: 'A' |
|
93 | o 0: 'A' | |
94 |
|
94 | |||
95 | $ hg branches |
|
95 | $ hg branches | |
96 | branch3 8:4666b71e8e32 |
|
96 | branch3 8:4666b71e8e32 | |
97 | branch2 6:5097051d331d |
|
97 | branch2 6:5097051d331d | |
98 | branch1 2:0a03079c47fd (inactive) |
|
98 | branch1 2:0a03079c47fd (inactive) | |
99 | default 0:1994f17a630e (inactive) |
|
99 | default 0:1994f17a630e (inactive) | |
100 |
|
100 | |||
101 | $ hg theads |
|
101 | $ hg theads | |
102 | 8: 'F' branch3 |
|
102 | 8: 'F' branch3 | |
103 | 6: 'E' branch2 |
|
103 | 6: 'E' branch2 | |
104 | 4: 'C' branch2 |
|
104 | 4: 'C' branch2 | |
105 | 2: 'B' branch1 |
|
105 | 2: 'B' branch1 | |
106 | 0: 'A' |
|
106 | 0: 'A' | |
107 |
|
107 | |||
108 | $ hg rebase -s 5 -d 8 |
|
108 | $ hg rebase -s 5 -d 8 | |
109 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
109 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
110 |
|
110 | |||
111 | $ hg branches |
|
111 | $ hg branches | |
112 | branch3 8:466cdfb14b62 |
|
112 | branch3 8:466cdfb14b62 | |
113 | branch2 4:e4fdb121d036 |
|
113 | branch2 4:e4fdb121d036 | |
114 | branch1 2:0a03079c47fd |
|
114 | branch1 2:0a03079c47fd | |
115 | default 0:1994f17a630e (inactive) |
|
115 | default 0:1994f17a630e (inactive) | |
116 |
|
116 | |||
117 | $ hg theads |
|
117 | $ hg theads | |
118 | 8: 'E' branch3 |
|
118 | 8: 'E' branch3 | |
119 | 4: 'C' branch2 |
|
119 | 4: 'C' branch2 | |
120 | 2: 'B' branch1 |
|
120 | 2: 'B' branch1 | |
121 | 0: 'A' |
|
121 | 0: 'A' | |
122 |
|
122 | |||
123 | $ hg tglog |
|
123 | $ hg tglog | |
124 |
|
|
124 | o 8: 'E' branch3 | |
125 | | |
|
125 | | | |
126 | o 7: 'D' branch3 |
|
126 | o 7: 'D' branch3 | |
127 | | |
|
127 | | | |
128 |
|
|
128 | @ 6: 'F' branch3 | |
129 | | |
|
129 | | | |
130 | o 5: 'branch3' branch3 |
|
130 | o 5: 'branch3' branch3 | |
131 | | |
|
131 | | | |
132 | | o 4: 'C' branch2 |
|
132 | | o 4: 'C' branch2 | |
133 | | | |
|
133 | | | | |
134 | | o 3: 'branch2' branch2 |
|
134 | | o 3: 'branch2' branch2 | |
135 | |/ |
|
135 | |/ | |
136 | | o 2: 'B' branch1 |
|
136 | | o 2: 'B' branch1 | |
137 | | | |
|
137 | | | | |
138 | | o 1: 'branch1' branch1 |
|
138 | | o 1: 'branch1' branch1 | |
139 | |/ |
|
139 | |/ | |
140 | o 0: 'A' |
|
140 | o 0: 'A' | |
141 |
|
141 | |||
142 | $ cd .. |
|
142 | $ cd .. | |
143 |
|
143 | |||
144 |
|
144 | |||
145 | Rebase head of branch3 (8) onto branch2 (6): |
|
145 | Rebase head of branch3 (8) onto branch2 (6): | |
146 |
|
146 | |||
147 | $ hg clone -q -u . a a2 |
|
147 | $ hg clone -q -u . a a2 | |
148 | $ cd a2 |
|
148 | $ cd a2 | |
149 |
|
149 | |||
150 | $ hg tglog |
|
150 | $ hg tglog | |
151 | @ 8: 'F' branch3 |
|
151 | @ 8: 'F' branch3 | |
152 | | |
|
152 | | | |
153 | o 7: 'branch3' branch3 |
|
153 | o 7: 'branch3' branch3 | |
154 | | |
|
154 | | | |
155 | | o 6: 'E' branch2 |
|
155 | | o 6: 'E' branch2 | |
156 | | | |
|
156 | | | | |
157 | | o 5: 'D' branch2 |
|
157 | | o 5: 'D' branch2 | |
158 | | | |
|
158 | | | | |
159 | | | o 4: 'C' branch2 |
|
159 | | | o 4: 'C' branch2 | |
160 | | | | |
|
160 | | | | | |
161 | +---o 3: 'branch2' branch2 |
|
161 | +---o 3: 'branch2' branch2 | |
162 | | | |
|
162 | | | | |
163 | | o 2: 'B' branch1 |
|
163 | | o 2: 'B' branch1 | |
164 | | | |
|
164 | | | | |
165 | | o 1: 'branch1' branch1 |
|
165 | | o 1: 'branch1' branch1 | |
166 | |/ |
|
166 | |/ | |
167 | o 0: 'A' |
|
167 | o 0: 'A' | |
168 |
|
168 | |||
169 | $ hg rebase -s 8 -d 6 |
|
169 | $ hg rebase -s 8 -d 6 | |
170 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
170 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
171 |
|
171 | |||
172 | $ hg branches |
|
172 | $ hg branches | |
173 | branch2 8:6b4bdc1b5ac0 |
|
173 | branch2 8:6b4bdc1b5ac0 | |
174 | branch3 7:653b9feb4616 |
|
174 | branch3 7:653b9feb4616 | |
175 | branch1 2:0a03079c47fd (inactive) |
|
175 | branch1 2:0a03079c47fd (inactive) | |
176 | default 0:1994f17a630e (inactive) |
|
176 | default 0:1994f17a630e (inactive) | |
177 |
|
177 | |||
178 | $ hg theads |
|
178 | $ hg theads | |
179 | 8: 'F' branch2 |
|
179 | 8: 'F' branch2 | |
180 | 7: 'branch3' branch3 |
|
180 | 7: 'branch3' branch3 | |
181 | 4: 'C' branch2 |
|
181 | 4: 'C' branch2 | |
182 | 2: 'B' branch1 |
|
182 | 2: 'B' branch1 | |
183 | 0: 'A' |
|
183 | 0: 'A' | |
184 |
|
184 | |||
185 | $ hg tglog |
|
185 | $ hg tglog | |
186 | @ 8: 'F' branch2 |
|
186 | @ 8: 'F' branch2 | |
187 | | |
|
187 | | | |
188 | | o 7: 'branch3' branch3 |
|
188 | | o 7: 'branch3' branch3 | |
189 | | | |
|
189 | | | | |
190 | o | 6: 'E' branch2 |
|
190 | o | 6: 'E' branch2 | |
191 | | | |
|
191 | | | | |
192 | o | 5: 'D' branch2 |
|
192 | o | 5: 'D' branch2 | |
193 | | | |
|
193 | | | | |
194 | | | o 4: 'C' branch2 |
|
194 | | | o 4: 'C' branch2 | |
195 | | | | |
|
195 | | | | | |
196 | | | o 3: 'branch2' branch2 |
|
196 | | | o 3: 'branch2' branch2 | |
197 | | |/ |
|
197 | | |/ | |
198 | o | 2: 'B' branch1 |
|
198 | o | 2: 'B' branch1 | |
199 | | | |
|
199 | | | | |
200 | o | 1: 'branch1' branch1 |
|
200 | o | 1: 'branch1' branch1 | |
201 | |/ |
|
201 | |/ | |
202 | o 0: 'A' |
|
202 | o 0: 'A' | |
203 |
|
203 | |||
204 | $ hg verify -q |
|
204 | $ hg verify -q | |
205 |
|
205 | |||
206 | $ cd .. |
|
206 | $ cd .. | |
207 |
|
207 | |||
208 |
|
208 | |||
209 | Rebase entire branch3 (7-8) onto branch2 (6): |
|
209 | Rebase entire branch3 (7-8) onto branch2 (6): | |
210 |
|
210 | |||
211 | $ hg clone -q -u . a a3 |
|
211 | $ hg clone -q -u . a a3 | |
212 | $ cd a3 |
|
212 | $ cd a3 | |
213 |
|
213 | |||
214 | $ hg tglog |
|
214 | $ hg tglog | |
215 | @ 8: 'F' branch3 |
|
215 | @ 8: 'F' branch3 | |
216 | | |
|
216 | | | |
217 | o 7: 'branch3' branch3 |
|
217 | o 7: 'branch3' branch3 | |
218 | | |
|
218 | | | |
219 | | o 6: 'E' branch2 |
|
219 | | o 6: 'E' branch2 | |
220 | | | |
|
220 | | | | |
221 | | o 5: 'D' branch2 |
|
221 | | o 5: 'D' branch2 | |
222 | | | |
|
222 | | | | |
223 | | | o 4: 'C' branch2 |
|
223 | | | o 4: 'C' branch2 | |
224 | | | | |
|
224 | | | | | |
225 | +---o 3: 'branch2' branch2 |
|
225 | +---o 3: 'branch2' branch2 | |
226 | | | |
|
226 | | | | |
227 | | o 2: 'B' branch1 |
|
227 | | o 2: 'B' branch1 | |
228 | | | |
|
228 | | | | |
229 | | o 1: 'branch1' branch1 |
|
229 | | o 1: 'branch1' branch1 | |
230 | |/ |
|
230 | |/ | |
231 | o 0: 'A' |
|
231 | o 0: 'A' | |
232 |
|
232 | |||
233 | $ hg rebase -s 7 -d 6 |
|
233 | $ hg rebase -s 7 -d 6 | |
234 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
234 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
235 |
|
235 | |||
236 | $ hg branches |
|
236 | $ hg branches | |
237 | branch2 7:6b4bdc1b5ac0 |
|
237 | branch2 7:6b4bdc1b5ac0 | |
238 | branch1 2:0a03079c47fd (inactive) |
|
238 | branch1 2:0a03079c47fd (inactive) | |
239 | default 0:1994f17a630e (inactive) |
|
239 | default 0:1994f17a630e (inactive) | |
240 |
|
240 | |||
241 | $ hg theads |
|
241 | $ hg theads | |
242 | 7: 'F' branch2 |
|
242 | 7: 'F' branch2 | |
243 | 4: 'C' branch2 |
|
243 | 4: 'C' branch2 | |
244 | 2: 'B' branch1 |
|
244 | 2: 'B' branch1 | |
245 | 0: 'A' |
|
245 | 0: 'A' | |
246 |
|
246 | |||
247 | $ hg tglog |
|
247 | $ hg tglog | |
248 | @ 7: 'F' branch2 |
|
248 | @ 7: 'F' branch2 | |
249 | | |
|
249 | | | |
250 | o 6: 'E' branch2 |
|
250 | o 6: 'E' branch2 | |
251 | | |
|
251 | | | |
252 | o 5: 'D' branch2 |
|
252 | o 5: 'D' branch2 | |
253 | | |
|
253 | | | |
254 | | o 4: 'C' branch2 |
|
254 | | o 4: 'C' branch2 | |
255 | | | |
|
255 | | | | |
256 | | o 3: 'branch2' branch2 |
|
256 | | o 3: 'branch2' branch2 | |
257 | | | |
|
257 | | | | |
258 | o | 2: 'B' branch1 |
|
258 | o | 2: 'B' branch1 | |
259 | | | |
|
259 | | | | |
260 | o | 1: 'branch1' branch1 |
|
260 | o | 1: 'branch1' branch1 | |
261 | |/ |
|
261 | |/ | |
262 | o 0: 'A' |
|
262 | o 0: 'A' | |
263 |
|
263 | |||
264 | $ hg verify -q |
|
264 | $ hg verify -q | |
265 |
|
265 | |||
266 | Stripping multiple branches in one go bypasses the fast-case code to |
|
266 | Stripping multiple branches in one go bypasses the fast-case code to | |
267 | update the branch cache. |
|
267 | update the branch cache. | |
268 |
|
268 | |||
269 | $ hg strip 2 |
|
269 | $ hg strip 2 | |
270 | 0 files updated, 0 files merged, 4 files removed, 0 files unresolved |
|
270 | 0 files updated, 0 files merged, 4 files removed, 0 files unresolved | |
271 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
271 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
272 |
|
272 | |||
273 | $ hg tglog |
|
273 | $ hg tglog | |
274 | o 3: 'C' branch2 |
|
274 | o 3: 'C' branch2 | |
275 | | |
|
275 | | | |
276 | o 2: 'branch2' branch2 |
|
276 | o 2: 'branch2' branch2 | |
277 | | |
|
277 | | | |
278 | | @ 1: 'branch1' branch1 |
|
278 | | @ 1: 'branch1' branch1 | |
279 | |/ |
|
279 | |/ | |
280 | o 0: 'A' |
|
280 | o 0: 'A' | |
281 |
|
281 | |||
282 |
|
282 | |||
283 | $ hg branches |
|
283 | $ hg branches | |
284 | branch2 3:e4fdb121d036 |
|
284 | branch2 3:e4fdb121d036 | |
285 | branch1 1:63379ac49655 |
|
285 | branch1 1:63379ac49655 | |
286 | default 0:1994f17a630e (inactive) |
|
286 | default 0:1994f17a630e (inactive) | |
287 |
|
287 | |||
288 | $ hg theads |
|
288 | $ hg theads | |
289 | 3: 'C' branch2 |
|
289 | 3: 'C' branch2 | |
290 | 1: 'branch1' branch1 |
|
290 | 1: 'branch1' branch1 | |
291 | 0: 'A' |
|
291 | 0: 'A' | |
292 |
|
292 | |||
293 | Fast path branchcache code should not be invoked if branches stripped is not |
|
293 | Fast path branchcache code should not be invoked if branches stripped is not | |
294 | the same as branches remaining. |
|
294 | the same as branches remaining. | |
295 |
|
295 | |||
296 | $ hg init b |
|
296 | $ hg init b | |
297 | $ cd b |
|
297 | $ cd b | |
298 |
|
298 | |||
299 | $ hg branch branch1 |
|
299 | $ hg branch branch1 | |
300 | marked working directory as branch branch1 |
|
300 | marked working directory as branch branch1 | |
301 | (branches are permanent and global, did you want a bookmark?) |
|
301 | (branches are permanent and global, did you want a bookmark?) | |
302 | $ hg ci -m 'branch1' |
|
302 | $ hg ci -m 'branch1' | |
303 |
|
303 | |||
304 | $ hg branch branch2 |
|
304 | $ hg branch branch2 | |
305 | marked working directory as branch branch2 |
|
305 | marked working directory as branch branch2 | |
306 | (branches are permanent and global, did you want a bookmark?) |
|
306 | (branches are permanent and global, did you want a bookmark?) | |
307 | $ hg ci -m 'branch2' |
|
307 | $ hg ci -m 'branch2' | |
308 |
|
308 | |||
309 | $ hg branch -f branch1 |
|
309 | $ hg branch -f branch1 | |
310 | marked working directory as branch branch1 |
|
310 | marked working directory as branch branch1 | |
311 | (branches are permanent and global, did you want a bookmark?) |
|
311 | (branches are permanent and global, did you want a bookmark?) | |
312 |
|
312 | |||
313 | $ echo a > A |
|
313 | $ echo a > A | |
314 | $ hg ci -Am A |
|
314 | $ hg ci -Am A | |
315 | adding A |
|
315 | adding A | |
316 | created new head |
|
316 | created new head | |
317 |
|
317 | |||
318 | $ hg tglog |
|
318 | $ hg tglog | |
319 | @ 2: 'A' branch1 |
|
319 | @ 2: 'A' branch1 | |
320 | | |
|
320 | | | |
321 | o 1: 'branch2' branch2 |
|
321 | o 1: 'branch2' branch2 | |
322 | | |
|
322 | | | |
323 | o 0: 'branch1' branch1 |
|
323 | o 0: 'branch1' branch1 | |
324 |
|
324 | |||
325 |
|
325 | |||
326 | $ hg theads |
|
326 | $ hg theads | |
327 | 2: 'A' branch1 |
|
327 | 2: 'A' branch1 | |
328 | 1: 'branch2' branch2 |
|
328 | 1: 'branch2' branch2 | |
329 |
|
329 | |||
330 | $ hg strip 2 |
|
330 | $ hg strip 2 | |
331 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
331 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
332 | saved backup bundle to $TESTTMP/a3/b/.hg/strip-backup/*-backup.hg (glob) |
|
332 | saved backup bundle to $TESTTMP/a3/b/.hg/strip-backup/*-backup.hg (glob) | |
333 |
|
333 | |||
334 | $ hg theads |
|
334 | $ hg theads | |
335 | 1: 'branch2' branch2 |
|
335 | 1: 'branch2' branch2 | |
336 | 0: 'branch1' branch1 |
|
336 | 0: 'branch1' branch1 | |
337 |
|
337 | |||
338 |
|
338 | |||
339 | Make sure requesting to strip a revision already stripped does not confuse things. |
|
339 | Make sure requesting to strip a revision already stripped does not confuse things. | |
340 | Try both orders. |
|
340 | Try both orders. | |
341 |
|
341 | |||
342 | $ cd .. |
|
342 | $ cd .. | |
343 |
|
343 | |||
344 | $ hg init c |
|
344 | $ hg init c | |
345 | $ cd c |
|
345 | $ cd c | |
346 |
|
346 | |||
347 | $ echo a > a |
|
347 | $ echo a > a | |
348 | $ hg ci -Am A |
|
348 | $ hg ci -Am A | |
349 | adding a |
|
349 | adding a | |
350 | $ echo b > b |
|
350 | $ echo b > b | |
351 | $ hg ci -Am B |
|
351 | $ hg ci -Am B | |
352 | adding b |
|
352 | adding b | |
353 | $ echo c > c |
|
353 | $ echo c > c | |
354 | $ hg ci -Am C |
|
354 | $ hg ci -Am C | |
355 | adding c |
|
355 | adding c | |
356 | $ echo d > d |
|
356 | $ echo d > d | |
357 | $ hg ci -Am D |
|
357 | $ hg ci -Am D | |
358 | adding d |
|
358 | adding d | |
359 | $ echo e > e |
|
359 | $ echo e > e | |
360 | $ hg ci -Am E |
|
360 | $ hg ci -Am E | |
361 | adding e |
|
361 | adding e | |
362 |
|
362 | |||
363 | $ hg tglog |
|
363 | $ hg tglog | |
364 | @ 4: 'E' |
|
364 | @ 4: 'E' | |
365 | | |
|
365 | | | |
366 | o 3: 'D' |
|
366 | o 3: 'D' | |
367 | | |
|
367 | | | |
368 | o 2: 'C' |
|
368 | o 2: 'C' | |
369 | | |
|
369 | | | |
370 | o 1: 'B' |
|
370 | o 1: 'B' | |
371 | | |
|
371 | | | |
372 | o 0: 'A' |
|
372 | o 0: 'A' | |
373 |
|
373 | |||
374 |
|
374 | |||
375 | $ hg strip 3 4 |
|
375 | $ hg strip 3 4 | |
376 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
376 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved | |
377 | saved backup bundle to $TESTTMP/a3/c/.hg/strip-backup/*-backup.hg (glob) |
|
377 | saved backup bundle to $TESTTMP/a3/c/.hg/strip-backup/*-backup.hg (glob) | |
378 |
|
378 | |||
379 | $ hg theads |
|
379 | $ hg theads | |
380 | 2: 'C' |
|
380 | 2: 'C' | |
381 |
|
381 | |||
382 | $ hg strip 2 1 |
|
382 | $ hg strip 2 1 | |
383 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
383 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved | |
384 | saved backup bundle to $TESTTMP/a3/c/.hg/strip-backup/*-backup.hg (glob) |
|
384 | saved backup bundle to $TESTTMP/a3/c/.hg/strip-backup/*-backup.hg (glob) | |
385 |
|
385 | |||
386 | $ hg theads |
|
386 | $ hg theads | |
387 | 0: 'A' |
|
387 | 0: 'A' | |
388 |
|
388 | |||
389 | Make sure rebase does not break for phase/filter related reason |
|
389 | Make sure rebase does not break for phase/filter related reason | |
390 | ---------------------------------------------------------------- |
|
390 | ---------------------------------------------------------------- | |
391 | (issue3858) |
|
391 | (issue3858) | |
392 |
|
392 | |||
393 | $ cd .. |
|
393 | $ cd .. | |
394 |
|
394 | |||
395 | $ cat >> $HGRCPATH << EOF |
|
395 | $ cat >> $HGRCPATH << EOF | |
396 | > [ui] |
|
396 | > [ui] | |
397 | > logtemplate={rev} {desc} {phase}\n |
|
397 | > logtemplate={rev} {desc} {phase}\n | |
398 | > EOF |
|
398 | > EOF | |
399 |
|
399 | |||
400 |
|
400 | |||
401 | $ hg init c4 |
|
401 | $ hg init c4 | |
402 | $ cd c4 |
|
402 | $ cd c4 | |
403 |
|
403 | |||
404 | $ echo a > a |
|
404 | $ echo a > a | |
405 | $ hg ci -Am A |
|
405 | $ hg ci -Am A | |
406 | adding a |
|
406 | adding a | |
407 | $ echo b > b |
|
407 | $ echo b > b | |
408 | $ hg ci -Am B |
|
408 | $ hg ci -Am B | |
409 | adding b |
|
409 | adding b | |
410 | $ hg up 0 |
|
410 | $ hg up 0 | |
411 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
411 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
412 | $ echo c > c |
|
412 | $ echo c > c | |
413 | $ hg ci -Am C |
|
413 | $ hg ci -Am C | |
414 | adding c |
|
414 | adding c | |
415 | created new head |
|
415 | created new head | |
416 | $ hg up 1 |
|
416 | $ hg up 1 | |
417 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
417 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
418 | $ hg merge |
|
418 | $ hg merge | |
419 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
419 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
420 | (branch merge, don't forget to commit) |
|
420 | (branch merge, don't forget to commit) | |
421 | $ hg ci -m d |
|
421 | $ hg ci -m d | |
422 | $ hg up 2 |
|
422 | $ hg up 2 | |
423 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
423 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
424 | $ echo e > e |
|
424 | $ echo e > e | |
425 | $ hg ci -Am E |
|
425 | $ hg ci -Am E | |
426 | adding e |
|
426 | adding e | |
427 | created new head |
|
427 | created new head | |
428 | $ hg merge 3 |
|
428 | $ hg merge 3 | |
429 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
429 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
430 | (branch merge, don't forget to commit) |
|
430 | (branch merge, don't forget to commit) | |
431 | $ hg ci -m F |
|
431 | $ hg ci -m F | |
432 | $ hg up 3 |
|
432 | $ hg up 3 | |
433 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
433 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
434 | $ echo g > g |
|
434 | $ echo g > g | |
435 | $ hg ci -Am G |
|
435 | $ hg ci -Am G | |
436 | adding g |
|
436 | adding g | |
437 | created new head |
|
437 | created new head | |
438 | $ echo h > h |
|
438 | $ echo h > h | |
439 | $ hg ci -Am H |
|
439 | $ hg ci -Am H | |
440 | adding h |
|
440 | adding h | |
441 | $ hg up 5 |
|
441 | $ hg up 5 | |
442 | 1 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
442 | 1 files updated, 0 files merged, 2 files removed, 0 files unresolved | |
443 | $ echo i > i |
|
443 | $ echo i > i | |
444 | $ hg ci -Am I |
|
444 | $ hg ci -Am I | |
445 | adding i |
|
445 | adding i | |
446 |
|
446 | |||
447 | Turn most changeset public |
|
447 | Turn most changeset public | |
448 |
|
448 | |||
449 | $ hg ph -p 7 |
|
449 | $ hg ph -p 7 | |
450 |
|
450 | |||
451 | $ hg heads |
|
451 | $ hg heads | |
452 | 8 I draft |
|
452 | 8 I draft | |
453 | 7 H public |
|
453 | 7 H public | |
454 | $ hg log -G |
|
454 | $ hg log -G | |
455 | @ 8 I draft |
|
455 | @ 8 I draft | |
456 | | |
|
456 | | | |
457 | | o 7 H public |
|
457 | | o 7 H public | |
458 | | | |
|
458 | | | | |
459 | | o 6 G public |
|
459 | | o 6 G public | |
460 | | | |
|
460 | | | | |
461 | o | 5 F draft |
|
461 | o | 5 F draft | |
462 | |\| |
|
462 | |\| | |
463 | o | 4 E draft |
|
463 | o | 4 E draft | |
464 | | | |
|
464 | | | | |
465 | | o 3 d public |
|
465 | | o 3 d public | |
466 | |/| |
|
466 | |/| | |
467 | o | 2 C public |
|
467 | o | 2 C public | |
468 | | | |
|
468 | | | | |
469 | | o 1 B public |
|
469 | | o 1 B public | |
470 | |/ |
|
470 | |/ | |
471 | o 0 A public |
|
471 | o 0 A public | |
472 |
|
472 | |||
473 |
|
473 | |||
474 | $ hg rebase --dest 7 --source 5 |
|
474 | $ hg rebase --dest 7 --source 5 | |
475 | saved backup bundle to $TESTTMP/a3/c4/.hg/strip-backup/*-backup.hg (glob) |
|
475 | saved backup bundle to $TESTTMP/a3/c4/.hg/strip-backup/*-backup.hg (glob) |
@@ -1,150 +1,150 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 |
|
13 | |||
14 | $ hg init a |
|
14 | $ hg init a | |
15 | $ cd a |
|
15 | $ cd a | |
16 |
|
16 | |||
17 | $ echo A > A |
|
17 | $ echo A > A | |
18 | $ hg add A |
|
18 | $ hg add A | |
19 | $ hg ci -m A |
|
19 | $ hg ci -m A | |
20 |
|
20 | |||
21 | $ echo 'B' > B |
|
21 | $ echo 'B' > B | |
22 | $ hg add B |
|
22 | $ hg add B | |
23 | $ hg ci -m B |
|
23 | $ hg ci -m B | |
24 |
|
24 | |||
25 | $ echo C >> A |
|
25 | $ echo C >> A | |
26 | $ hg ci -m C |
|
26 | $ hg ci -m C | |
27 |
|
27 | |||
28 | $ hg up -q -C 0 |
|
28 | $ hg up -q -C 0 | |
29 |
|
29 | |||
30 | $ echo D >> A |
|
30 | $ echo D >> A | |
31 | $ hg ci -m D |
|
31 | $ hg ci -m D | |
32 | created new head |
|
32 | created new head | |
33 |
|
33 | |||
34 | $ echo E > E |
|
34 | $ echo E > E | |
35 | $ hg add E |
|
35 | $ hg add E | |
36 | $ hg ci -m E |
|
36 | $ hg ci -m E | |
37 |
|
37 | |||
38 | $ hg up -q -C 0 |
|
38 | $ hg up -q -C 0 | |
39 |
|
39 | |||
40 | $ hg branch 'notdefault' |
|
40 | $ hg branch 'notdefault' | |
41 | marked working directory as branch notdefault |
|
41 | marked working directory as branch notdefault | |
42 | (branches are permanent and global, did you want a bookmark?) |
|
42 | (branches are permanent and global, did you want a bookmark?) | |
43 | $ echo F >> A |
|
43 | $ echo F >> A | |
44 | $ hg ci -m F |
|
44 | $ hg ci -m F | |
45 |
|
45 | |||
46 | $ cd .. |
|
46 | $ cd .. | |
47 |
|
47 | |||
48 |
|
48 | |||
49 | Rebasing B onto E - check keep: and phases |
|
49 | Rebasing B onto E - check keep: and phases | |
50 |
|
50 | |||
51 | $ hg clone -q -u . a a1 |
|
51 | $ hg clone -q -u . a a1 | |
52 | $ cd a1 |
|
52 | $ cd a1 | |
53 | $ hg phase --force --secret 2 |
|
53 | $ hg phase --force --secret 2 | |
54 |
|
54 | |||
55 | $ hg tglog |
|
55 | $ hg tglog | |
56 | @ 5:draft 'F' notdefault |
|
56 | @ 5:draft 'F' notdefault | |
57 | | |
|
57 | | | |
58 | | o 4:draft 'E' |
|
58 | | o 4:draft 'E' | |
59 | | | |
|
59 | | | | |
60 | | o 3:draft 'D' |
|
60 | | o 3:draft 'D' | |
61 | |/ |
|
61 | |/ | |
62 | | o 2:secret 'C' |
|
62 | | o 2:secret 'C' | |
63 | | | |
|
63 | | | | |
64 | | o 1:draft 'B' |
|
64 | | o 1:draft 'B' | |
65 | |/ |
|
65 | |/ | |
66 | o 0:draft 'A' |
|
66 | o 0:draft 'A' | |
67 |
|
67 | |||
68 | $ hg rebase -s 1 -d 4 --keep |
|
68 | $ hg rebase -s 1 -d 4 --keep | |
69 | merging A |
|
69 | merging A | |
70 | warning: conflicts during merge. |
|
70 | warning: conflicts during merge. | |
71 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
71 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
72 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
72 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
73 | [1] |
|
73 | [1] | |
74 |
|
74 | |||
75 | Solve the conflict and go on: |
|
75 | Solve the conflict and go on: | |
76 |
|
76 | |||
77 | $ echo 'conflict solved' > A |
|
77 | $ echo 'conflict solved' > A | |
78 | $ rm A.orig |
|
78 | $ rm A.orig | |
79 | $ hg resolve -m A |
|
79 | $ hg resolve -m A | |
80 | $ hg rebase --continue |
|
80 | $ hg rebase --continue | |
81 |
|
81 | |||
82 | $ hg tglog |
|
82 | $ hg tglog | |
83 |
|
|
83 | o 7:secret 'C' | |
84 | | |
|
84 | | | |
85 | o 6:draft 'B' |
|
85 | o 6:draft 'B' | |
86 | | |
|
86 | | | |
87 |
| |
|
87 | | @ 5:draft 'F' notdefault | |
88 | | | |
|
88 | | | | |
89 | o | 4:draft 'E' |
|
89 | o | 4:draft 'E' | |
90 | | | |
|
90 | | | | |
91 | o | 3:draft 'D' |
|
91 | o | 3:draft 'D' | |
92 | |/ |
|
92 | |/ | |
93 | | o 2:secret 'C' |
|
93 | | o 2:secret 'C' | |
94 | | | |
|
94 | | | | |
95 | | o 1:draft 'B' |
|
95 | | o 1:draft 'B' | |
96 | |/ |
|
96 | |/ | |
97 | o 0:draft 'A' |
|
97 | o 0:draft 'A' | |
98 |
|
98 | |||
99 | $ cd .. |
|
99 | $ cd .. | |
100 |
|
100 | |||
101 |
|
101 | |||
102 | Rebase F onto E - check keepbranches: |
|
102 | Rebase F onto E - check keepbranches: | |
103 |
|
103 | |||
104 | $ hg clone -q -u . a a2 |
|
104 | $ hg clone -q -u . a a2 | |
105 | $ cd a2 |
|
105 | $ cd a2 | |
106 | $ hg phase --force --secret 2 |
|
106 | $ hg phase --force --secret 2 | |
107 |
|
107 | |||
108 | $ hg tglog |
|
108 | $ hg tglog | |
109 | @ 5:draft 'F' notdefault |
|
109 | @ 5:draft 'F' notdefault | |
110 | | |
|
110 | | | |
111 | | o 4:draft 'E' |
|
111 | | o 4:draft 'E' | |
112 | | | |
|
112 | | | | |
113 | | o 3:draft 'D' |
|
113 | | o 3:draft 'D' | |
114 | |/ |
|
114 | |/ | |
115 | | o 2:secret 'C' |
|
115 | | o 2:secret 'C' | |
116 | | | |
|
116 | | | | |
117 | | o 1:draft 'B' |
|
117 | | o 1:draft 'B' | |
118 | |/ |
|
118 | |/ | |
119 | o 0:draft 'A' |
|
119 | o 0:draft 'A' | |
120 |
|
120 | |||
121 | $ hg rebase -s 5 -d 4 --keepbranches |
|
121 | $ hg rebase -s 5 -d 4 --keepbranches | |
122 | merging A |
|
122 | merging A | |
123 | warning: conflicts during merge. |
|
123 | warning: conflicts during merge. | |
124 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
124 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
125 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
125 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
126 | [1] |
|
126 | [1] | |
127 |
|
127 | |||
128 | Solve the conflict and go on: |
|
128 | Solve the conflict and go on: | |
129 |
|
129 | |||
130 | $ echo 'conflict solved' > A |
|
130 | $ echo 'conflict solved' > A | |
131 | $ rm A.orig |
|
131 | $ rm A.orig | |
132 | $ hg resolve -m A |
|
132 | $ hg resolve -m A | |
133 | $ hg rebase --continue |
|
133 | $ hg rebase --continue | |
134 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
134 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
135 |
|
135 | |||
136 | $ hg tglog |
|
136 | $ hg tglog | |
137 | @ 5:draft 'F' notdefault |
|
137 | @ 5:draft 'F' notdefault | |
138 | | |
|
138 | | | |
139 | o 4:draft 'E' |
|
139 | o 4:draft 'E' | |
140 | | |
|
140 | | | |
141 | o 3:draft 'D' |
|
141 | o 3:draft 'D' | |
142 | | |
|
142 | | | |
143 | | o 2:secret 'C' |
|
143 | | o 2:secret 'C' | |
144 | | | |
|
144 | | | | |
145 | | o 1:draft 'B' |
|
145 | | o 1:draft 'B' | |
146 | |/ |
|
146 | |/ | |
147 | o 0:draft 'A' |
|
147 | o 0:draft 'A' | |
148 |
|
148 | |||
149 |
|
149 | |||
150 | $ cd .. |
|
150 | $ cd .. |
@@ -1,751 +1,751 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > mq= |
|
5 | > mq= | |
6 | > |
|
6 | > | |
7 | > [phases] |
|
7 | > [phases] | |
8 | > publish=False |
|
8 | > publish=False | |
9 | > |
|
9 | > | |
10 | > [alias] |
|
10 | > [alias] | |
11 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
11 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
12 | > tglogp = log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
12 | > tglogp = log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
13 | > EOF |
|
13 | > EOF | |
14 |
|
14 | |||
15 | Create repo a: |
|
15 | Create repo a: | |
16 |
|
16 | |||
17 | $ hg init a |
|
17 | $ hg init a | |
18 | $ cd a |
|
18 | $ cd a | |
19 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
19 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
20 | adding changesets |
|
20 | adding changesets | |
21 | adding manifests |
|
21 | adding manifests | |
22 | adding file changes |
|
22 | adding file changes | |
23 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
23 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
24 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
24 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
25 | $ hg up tip |
|
25 | $ hg up tip | |
26 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
26 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
27 |
|
27 | |||
28 | $ hg tglog |
|
28 | $ hg tglog | |
29 | @ 7: 'H' |
|
29 | @ 7: 'H' | |
30 | | |
|
30 | | | |
31 | | o 6: 'G' |
|
31 | | o 6: 'G' | |
32 | |/| |
|
32 | |/| | |
33 | o | 5: 'F' |
|
33 | o | 5: 'F' | |
34 | | | |
|
34 | | | | |
35 | | o 4: 'E' |
|
35 | | o 4: 'E' | |
36 | |/ |
|
36 | |/ | |
37 | | o 3: 'D' |
|
37 | | o 3: 'D' | |
38 | | | |
|
38 | | | | |
39 | | o 2: 'C' |
|
39 | | o 2: 'C' | |
40 | | | |
|
40 | | | | |
41 | | o 1: 'B' |
|
41 | | o 1: 'B' | |
42 | |/ |
|
42 | |/ | |
43 | o 0: 'A' |
|
43 | o 0: 'A' | |
44 |
|
44 | |||
45 | $ cd .. |
|
45 | $ cd .. | |
46 |
|
46 | |||
47 |
|
47 | |||
48 | Rebasing B onto H and collapsing changesets with different phases: |
|
48 | Rebasing B onto H and collapsing changesets with different phases: | |
49 |
|
49 | |||
50 |
|
50 | |||
51 | $ hg clone -q -u 3 a a1 |
|
51 | $ hg clone -q -u 3 a a1 | |
52 | $ cd a1 |
|
52 | $ cd a1 | |
53 |
|
53 | |||
54 | $ hg phase --force --secret 3 |
|
54 | $ hg phase --force --secret 3 | |
55 |
|
55 | |||
56 | $ hg rebase --collapse --keepbranches |
|
56 | $ hg rebase --collapse --keepbranches | |
57 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
57 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
58 |
|
58 | |||
59 | $ hg tglogp |
|
59 | $ hg tglogp | |
60 |
|
|
60 | o 5:secret 'Collapsed revision | |
61 | | * B |
|
61 | | * B | |
62 | | * C |
|
62 | | * C | |
63 | | * D' |
|
63 | | * D' | |
64 |
|
|
64 | @ 4:draft 'H' | |
65 | | |
|
65 | | | |
66 | | o 3:draft 'G' |
|
66 | | o 3:draft 'G' | |
67 | |/| |
|
67 | |/| | |
68 | o | 2:draft 'F' |
|
68 | o | 2:draft 'F' | |
69 | | | |
|
69 | | | | |
70 | | o 1:draft 'E' |
|
70 | | o 1:draft 'E' | |
71 | |/ |
|
71 | |/ | |
72 | o 0:draft 'A' |
|
72 | o 0:draft 'A' | |
73 |
|
73 | |||
74 | $ hg manifest --rev tip |
|
74 | $ hg manifest --rev tip | |
75 | A |
|
75 | A | |
76 | B |
|
76 | B | |
77 | C |
|
77 | C | |
78 | D |
|
78 | D | |
79 | F |
|
79 | F | |
80 | H |
|
80 | H | |
81 |
|
81 | |||
82 | $ cd .. |
|
82 | $ cd .. | |
83 |
|
83 | |||
84 |
|
84 | |||
85 | Rebasing E onto H: |
|
85 | Rebasing E onto H: | |
86 |
|
86 | |||
87 | $ hg clone -q -u . a a2 |
|
87 | $ hg clone -q -u . a a2 | |
88 | $ cd a2 |
|
88 | $ cd a2 | |
89 |
|
89 | |||
90 | $ hg phase --force --secret 6 |
|
90 | $ hg phase --force --secret 6 | |
91 | $ hg rebase --source 4 --collapse |
|
91 | $ hg rebase --source 4 --collapse | |
92 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
92 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
93 |
|
93 | |||
94 | $ hg tglog |
|
94 | $ hg tglog | |
95 |
|
|
95 | o 6: 'Collapsed revision | |
96 | | * E |
|
96 | | * E | |
97 | | * G' |
|
97 | | * G' | |
98 |
|
|
98 | @ 5: 'H' | |
99 | | |
|
99 | | | |
100 | o 4: 'F' |
|
100 | o 4: 'F' | |
101 | | |
|
101 | | | |
102 | | o 3: 'D' |
|
102 | | o 3: 'D' | |
103 | | | |
|
103 | | | | |
104 | | o 2: 'C' |
|
104 | | o 2: 'C' | |
105 | | | |
|
105 | | | | |
106 | | o 1: 'B' |
|
106 | | o 1: 'B' | |
107 | |/ |
|
107 | |/ | |
108 | o 0: 'A' |
|
108 | o 0: 'A' | |
109 |
|
109 | |||
110 | $ hg manifest --rev tip |
|
110 | $ hg manifest --rev tip | |
111 | A |
|
111 | A | |
112 | E |
|
112 | E | |
113 | F |
|
113 | F | |
114 | H |
|
114 | H | |
115 |
|
115 | |||
116 | $ cd .. |
|
116 | $ cd .. | |
117 |
|
117 | |||
118 | Rebasing G onto H with custom message: |
|
118 | Rebasing G onto H with custom message: | |
119 |
|
119 | |||
120 | $ hg clone -q -u . a a3 |
|
120 | $ hg clone -q -u . a a3 | |
121 | $ cd a3 |
|
121 | $ cd a3 | |
122 |
|
122 | |||
123 | $ hg rebase --base 6 -m 'custom message' |
|
123 | $ hg rebase --base 6 -m 'custom message' | |
124 | abort: message can only be specified with collapse |
|
124 | abort: message can only be specified with collapse | |
125 | [255] |
|
125 | [255] | |
126 |
|
126 | |||
127 | $ hg rebase --source 4 --collapse -m 'custom message' |
|
127 | $ hg rebase --source 4 --collapse -m 'custom message' | |
128 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
128 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
129 |
|
129 | |||
130 | $ hg tglog |
|
130 | $ hg tglog | |
131 |
|
|
131 | o 6: 'custom message' | |
132 | | |
|
132 | | | |
133 |
|
|
133 | @ 5: 'H' | |
134 | | |
|
134 | | | |
135 | o 4: 'F' |
|
135 | o 4: 'F' | |
136 | | |
|
136 | | | |
137 | | o 3: 'D' |
|
137 | | o 3: 'D' | |
138 | | | |
|
138 | | | | |
139 | | o 2: 'C' |
|
139 | | o 2: 'C' | |
140 | | | |
|
140 | | | | |
141 | | o 1: 'B' |
|
141 | | o 1: 'B' | |
142 | |/ |
|
142 | |/ | |
143 | o 0: 'A' |
|
143 | o 0: 'A' | |
144 |
|
144 | |||
145 | $ hg manifest --rev tip |
|
145 | $ hg manifest --rev tip | |
146 | A |
|
146 | A | |
147 | E |
|
147 | E | |
148 | F |
|
148 | F | |
149 | H |
|
149 | H | |
150 |
|
150 | |||
151 | $ cd .. |
|
151 | $ cd .. | |
152 |
|
152 | |||
153 | Create repo b: |
|
153 | Create repo b: | |
154 |
|
154 | |||
155 | $ hg init b |
|
155 | $ hg init b | |
156 | $ cd b |
|
156 | $ cd b | |
157 |
|
157 | |||
158 | $ echo A > A |
|
158 | $ echo A > A | |
159 | $ hg ci -Am A |
|
159 | $ hg ci -Am A | |
160 | adding A |
|
160 | adding A | |
161 | $ echo B > B |
|
161 | $ echo B > B | |
162 | $ hg ci -Am B |
|
162 | $ hg ci -Am B | |
163 | adding B |
|
163 | adding B | |
164 |
|
164 | |||
165 | $ hg up -q 0 |
|
165 | $ hg up -q 0 | |
166 |
|
166 | |||
167 | $ echo C > C |
|
167 | $ echo C > C | |
168 | $ hg ci -Am C |
|
168 | $ hg ci -Am C | |
169 | adding C |
|
169 | adding C | |
170 | created new head |
|
170 | created new head | |
171 |
|
171 | |||
172 | $ hg merge |
|
172 | $ hg merge | |
173 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
173 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
174 | (branch merge, don't forget to commit) |
|
174 | (branch merge, don't forget to commit) | |
175 |
|
175 | |||
176 | $ echo D > D |
|
176 | $ echo D > D | |
177 | $ hg ci -Am D |
|
177 | $ hg ci -Am D | |
178 | adding D |
|
178 | adding D | |
179 |
|
179 | |||
180 | $ hg up -q 1 |
|
180 | $ hg up -q 1 | |
181 |
|
181 | |||
182 | $ echo E > E |
|
182 | $ echo E > E | |
183 | $ hg ci -Am E |
|
183 | $ hg ci -Am E | |
184 | adding E |
|
184 | adding E | |
185 | created new head |
|
185 | created new head | |
186 |
|
186 | |||
187 | $ echo F > F |
|
187 | $ echo F > F | |
188 | $ hg ci -Am F |
|
188 | $ hg ci -Am F | |
189 | adding F |
|
189 | adding F | |
190 |
|
190 | |||
191 | $ hg merge |
|
191 | $ hg merge | |
192 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
192 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
193 | (branch merge, don't forget to commit) |
|
193 | (branch merge, don't forget to commit) | |
194 | $ hg ci -m G |
|
194 | $ hg ci -m G | |
195 |
|
195 | |||
196 | $ hg up -q 0 |
|
196 | $ hg up -q 0 | |
197 |
|
197 | |||
198 | $ echo H > H |
|
198 | $ echo H > H | |
199 | $ hg ci -Am H |
|
199 | $ hg ci -Am H | |
200 | adding H |
|
200 | adding H | |
201 | created new head |
|
201 | created new head | |
202 |
|
202 | |||
203 | $ hg tglog |
|
203 | $ hg tglog | |
204 | @ 7: 'H' |
|
204 | @ 7: 'H' | |
205 | | |
|
205 | | | |
206 | | o 6: 'G' |
|
206 | | o 6: 'G' | |
207 | | |\ |
|
207 | | |\ | |
208 | | | o 5: 'F' |
|
208 | | | o 5: 'F' | |
209 | | | | |
|
209 | | | | | |
210 | | | o 4: 'E' |
|
210 | | | o 4: 'E' | |
211 | | | | |
|
211 | | | | | |
212 | | o | 3: 'D' |
|
212 | | o | 3: 'D' | |
213 | | |\| |
|
213 | | |\| | |
214 | | o | 2: 'C' |
|
214 | | o | 2: 'C' | |
215 | |/ / |
|
215 | |/ / | |
216 | | o 1: 'B' |
|
216 | | o 1: 'B' | |
217 | |/ |
|
217 | |/ | |
218 | o 0: 'A' |
|
218 | o 0: 'A' | |
219 |
|
219 | |||
220 | $ cd .. |
|
220 | $ cd .. | |
221 |
|
221 | |||
222 |
|
222 | |||
223 | Rebase and collapse - more than one external (fail): |
|
223 | Rebase and collapse - more than one external (fail): | |
224 |
|
224 | |||
225 | $ hg clone -q -u . b b1 |
|
225 | $ hg clone -q -u . b b1 | |
226 | $ cd b1 |
|
226 | $ cd b1 | |
227 |
|
227 | |||
228 | $ hg rebase -s 2 --collapse |
|
228 | $ hg rebase -s 2 --collapse | |
229 | abort: unable to collapse, there is more than one external parent |
|
229 | abort: unable to collapse, there is more than one external parent | |
230 | [255] |
|
230 | [255] | |
231 |
|
231 | |||
232 | Rebase and collapse - E onto H: |
|
232 | Rebase and collapse - E onto H: | |
233 |
|
233 | |||
234 | $ hg rebase -s 4 --collapse # root (4) is not a merge |
|
234 | $ hg rebase -s 4 --collapse # root (4) is not a merge | |
235 | saved backup bundle to $TESTTMP/b1/.hg/strip-backup/*-backup.hg (glob) |
|
235 | saved backup bundle to $TESTTMP/b1/.hg/strip-backup/*-backup.hg (glob) | |
236 |
|
236 | |||
237 | $ hg tglog |
|
237 | $ hg tglog | |
238 |
|
|
238 | o 5: 'Collapsed revision | |
239 | |\ * E |
|
239 | |\ * E | |
240 | | | * F |
|
240 | | | * F | |
241 | | | * G' |
|
241 | | | * G' | |
242 |
| |
|
242 | | @ 4: 'H' | |
243 | | | |
|
243 | | | | |
244 | o | 3: 'D' |
|
244 | o | 3: 'D' | |
245 | |\ \ |
|
245 | |\ \ | |
246 | | o | 2: 'C' |
|
246 | | o | 2: 'C' | |
247 | | |/ |
|
247 | | |/ | |
248 | o / 1: 'B' |
|
248 | o / 1: 'B' | |
249 | |/ |
|
249 | |/ | |
250 | o 0: 'A' |
|
250 | o 0: 'A' | |
251 |
|
251 | |||
252 | $ hg manifest --rev tip |
|
252 | $ hg manifest --rev tip | |
253 | A |
|
253 | A | |
254 | C |
|
254 | C | |
255 | D |
|
255 | D | |
256 | E |
|
256 | E | |
257 | F |
|
257 | F | |
258 | H |
|
258 | H | |
259 |
|
259 | |||
260 | $ cd .. |
|
260 | $ cd .. | |
261 |
|
261 | |||
262 |
|
262 | |||
263 |
|
263 | |||
264 |
|
264 | |||
265 | Test that branchheads cache is updated correctly when doing a strip in which |
|
265 | Test that branchheads cache is updated correctly when doing a strip in which | |
266 | the parent of the ancestor node to be stripped does not become a head and also, |
|
266 | the parent of the ancestor node to be stripped does not become a head and also, | |
267 | the parent of a node that is a child of the node stripped becomes a head (node |
|
267 | the parent of a node that is a child of the node stripped becomes a head (node | |
268 | 3). The code is now much simpler and we could just test a simpler scenario |
|
268 | 3). The code is now much simpler and we could just test a simpler scenario | |
269 | We keep it the test this way in case new complexity is injected. |
|
269 | We keep it the test this way in case new complexity is injected. | |
270 |
|
270 | |||
271 | $ hg clone -q -u . b b2 |
|
271 | $ hg clone -q -u . b b2 | |
272 | $ cd b2 |
|
272 | $ cd b2 | |
273 |
|
273 | |||
274 | $ hg heads --template="{rev}:{node} {branch}\n" |
|
274 | $ hg heads --template="{rev}:{node} {branch}\n" | |
275 | 7:c65502d4178782309ce0574c5ae6ee9485a9bafa default |
|
275 | 7:c65502d4178782309ce0574c5ae6ee9485a9bafa default | |
276 | 6:c772a8b2dc17629cec88a19d09c926c4814b12c7 default |
|
276 | 6:c772a8b2dc17629cec88a19d09c926c4814b12c7 default | |
277 |
|
277 | |||
278 | $ cat $TESTTMP/b2/.hg/cache/branchheads-served |
|
278 | $ cat $TESTTMP/b2/.hg/cache/branchheads-served | |
279 | c65502d4178782309ce0574c5ae6ee9485a9bafa 7 |
|
279 | c65502d4178782309ce0574c5ae6ee9485a9bafa 7 | |
280 | c772a8b2dc17629cec88a19d09c926c4814b12c7 default |
|
280 | c772a8b2dc17629cec88a19d09c926c4814b12c7 default | |
281 | c65502d4178782309ce0574c5ae6ee9485a9bafa default |
|
281 | c65502d4178782309ce0574c5ae6ee9485a9bafa default | |
282 |
|
282 | |||
283 | $ hg strip 4 |
|
283 | $ hg strip 4 | |
284 | saved backup bundle to $TESTTMP/b2/.hg/strip-backup/8a5212ebc852-backup.hg (glob) |
|
284 | saved backup bundle to $TESTTMP/b2/.hg/strip-backup/8a5212ebc852-backup.hg (glob) | |
285 |
|
285 | |||
286 | $ cat $TESTTMP/b2/.hg/cache/branchheads-served |
|
286 | $ cat $TESTTMP/b2/.hg/cache/branchheads-served | |
287 | c65502d4178782309ce0574c5ae6ee9485a9bafa 4 |
|
287 | c65502d4178782309ce0574c5ae6ee9485a9bafa 4 | |
288 | 2870ad076e541e714f3c2bc32826b5c6a6e5b040 default |
|
288 | 2870ad076e541e714f3c2bc32826b5c6a6e5b040 default | |
289 | c65502d4178782309ce0574c5ae6ee9485a9bafa default |
|
289 | c65502d4178782309ce0574c5ae6ee9485a9bafa default | |
290 |
|
290 | |||
291 | $ hg heads --template="{rev}:{node} {branch}\n" |
|
291 | $ hg heads --template="{rev}:{node} {branch}\n" | |
292 | 4:c65502d4178782309ce0574c5ae6ee9485a9bafa default |
|
292 | 4:c65502d4178782309ce0574c5ae6ee9485a9bafa default | |
293 | 3:2870ad076e541e714f3c2bc32826b5c6a6e5b040 default |
|
293 | 3:2870ad076e541e714f3c2bc32826b5c6a6e5b040 default | |
294 |
|
294 | |||
295 | $ cd .. |
|
295 | $ cd .. | |
296 |
|
296 | |||
297 |
|
297 | |||
298 |
|
298 | |||
299 |
|
299 | |||
300 |
|
300 | |||
301 |
|
301 | |||
302 | Create repo c: |
|
302 | Create repo c: | |
303 |
|
303 | |||
304 | $ hg init c |
|
304 | $ hg init c | |
305 | $ cd c |
|
305 | $ cd c | |
306 |
|
306 | |||
307 | $ echo A > A |
|
307 | $ echo A > A | |
308 | $ hg ci -Am A |
|
308 | $ hg ci -Am A | |
309 | adding A |
|
309 | adding A | |
310 | $ echo B > B |
|
310 | $ echo B > B | |
311 | $ hg ci -Am B |
|
311 | $ hg ci -Am B | |
312 | adding B |
|
312 | adding B | |
313 |
|
313 | |||
314 | $ hg up -q 0 |
|
314 | $ hg up -q 0 | |
315 |
|
315 | |||
316 | $ echo C > C |
|
316 | $ echo C > C | |
317 | $ hg ci -Am C |
|
317 | $ hg ci -Am C | |
318 | adding C |
|
318 | adding C | |
319 | created new head |
|
319 | created new head | |
320 |
|
320 | |||
321 | $ hg merge |
|
321 | $ hg merge | |
322 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
322 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
323 | (branch merge, don't forget to commit) |
|
323 | (branch merge, don't forget to commit) | |
324 |
|
324 | |||
325 | $ echo D > D |
|
325 | $ echo D > D | |
326 | $ hg ci -Am D |
|
326 | $ hg ci -Am D | |
327 | adding D |
|
327 | adding D | |
328 |
|
328 | |||
329 | $ hg up -q 1 |
|
329 | $ hg up -q 1 | |
330 |
|
330 | |||
331 | $ echo E > E |
|
331 | $ echo E > E | |
332 | $ hg ci -Am E |
|
332 | $ hg ci -Am E | |
333 | adding E |
|
333 | adding E | |
334 | created new head |
|
334 | created new head | |
335 | $ echo F > E |
|
335 | $ echo F > E | |
336 | $ hg ci -m 'F' |
|
336 | $ hg ci -m 'F' | |
337 |
|
337 | |||
338 | $ echo G > G |
|
338 | $ echo G > G | |
339 | $ hg ci -Am G |
|
339 | $ hg ci -Am G | |
340 | adding G |
|
340 | adding G | |
341 |
|
341 | |||
342 | $ hg merge |
|
342 | $ hg merge | |
343 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
343 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
344 | (branch merge, don't forget to commit) |
|
344 | (branch merge, don't forget to commit) | |
345 |
|
345 | |||
346 | $ hg ci -m H |
|
346 | $ hg ci -m H | |
347 |
|
347 | |||
348 | $ hg up -q 0 |
|
348 | $ hg up -q 0 | |
349 |
|
349 | |||
350 | $ echo I > I |
|
350 | $ echo I > I | |
351 | $ hg ci -Am I |
|
351 | $ hg ci -Am I | |
352 | adding I |
|
352 | adding I | |
353 | created new head |
|
353 | created new head | |
354 |
|
354 | |||
355 | $ hg tglog |
|
355 | $ hg tglog | |
356 | @ 8: 'I' |
|
356 | @ 8: 'I' | |
357 | | |
|
357 | | | |
358 | | o 7: 'H' |
|
358 | | o 7: 'H' | |
359 | | |\ |
|
359 | | |\ | |
360 | | | o 6: 'G' |
|
360 | | | o 6: 'G' | |
361 | | | | |
|
361 | | | | | |
362 | | | o 5: 'F' |
|
362 | | | o 5: 'F' | |
363 | | | | |
|
363 | | | | | |
364 | | | o 4: 'E' |
|
364 | | | o 4: 'E' | |
365 | | | | |
|
365 | | | | | |
366 | | o | 3: 'D' |
|
366 | | o | 3: 'D' | |
367 | | |\| |
|
367 | | |\| | |
368 | | o | 2: 'C' |
|
368 | | o | 2: 'C' | |
369 | |/ / |
|
369 | |/ / | |
370 | | o 1: 'B' |
|
370 | | o 1: 'B' | |
371 | |/ |
|
371 | |/ | |
372 | o 0: 'A' |
|
372 | o 0: 'A' | |
373 |
|
373 | |||
374 | $ cd .. |
|
374 | $ cd .. | |
375 |
|
375 | |||
376 |
|
376 | |||
377 | Rebase and collapse - E onto I: |
|
377 | Rebase and collapse - E onto I: | |
378 |
|
378 | |||
379 | $ hg clone -q -u . c c1 |
|
379 | $ hg clone -q -u . c c1 | |
380 | $ cd c1 |
|
380 | $ cd c1 | |
381 |
|
381 | |||
382 | $ hg rebase -s 4 --collapse # root (4) is not a merge |
|
382 | $ hg rebase -s 4 --collapse # root (4) is not a merge | |
383 | merging E |
|
383 | merging E | |
384 | saved backup bundle to $TESTTMP/c1/.hg/strip-backup/*-backup.hg (glob) |
|
384 | saved backup bundle to $TESTTMP/c1/.hg/strip-backup/*-backup.hg (glob) | |
385 |
|
385 | |||
386 | $ hg tglog |
|
386 | $ hg tglog | |
387 |
|
|
387 | o 5: 'Collapsed revision | |
388 | |\ * E |
|
388 | |\ * E | |
389 | | | * F |
|
389 | | | * F | |
390 | | | * G |
|
390 | | | * G | |
391 | | | * H' |
|
391 | | | * H' | |
392 |
| |
|
392 | | @ 4: 'I' | |
393 | | | |
|
393 | | | | |
394 | o | 3: 'D' |
|
394 | o | 3: 'D' | |
395 | |\ \ |
|
395 | |\ \ | |
396 | | o | 2: 'C' |
|
396 | | o | 2: 'C' | |
397 | | |/ |
|
397 | | |/ | |
398 | o / 1: 'B' |
|
398 | o / 1: 'B' | |
399 | |/ |
|
399 | |/ | |
400 | o 0: 'A' |
|
400 | o 0: 'A' | |
401 |
|
401 | |||
402 | $ hg manifest --rev tip |
|
402 | $ hg manifest --rev tip | |
403 | A |
|
403 | A | |
404 | C |
|
404 | C | |
405 | D |
|
405 | D | |
406 | E |
|
406 | E | |
407 | G |
|
407 | G | |
408 | I |
|
408 | I | |
409 |
|
409 | |||
410 | $ hg up tip -q |
|
410 | $ hg up tip -q | |
411 | $ cat E |
|
411 | $ cat E | |
412 | F |
|
412 | F | |
413 |
|
413 | |||
414 | $ cd .. |
|
414 | $ cd .. | |
415 |
|
415 | |||
416 |
|
416 | |||
417 | Create repo d: |
|
417 | Create repo d: | |
418 |
|
418 | |||
419 | $ hg init d |
|
419 | $ hg init d | |
420 | $ cd d |
|
420 | $ cd d | |
421 |
|
421 | |||
422 | $ echo A > A |
|
422 | $ echo A > A | |
423 | $ hg ci -Am A |
|
423 | $ hg ci -Am A | |
424 | adding A |
|
424 | adding A | |
425 | $ echo B > B |
|
425 | $ echo B > B | |
426 | $ hg ci -Am B |
|
426 | $ hg ci -Am B | |
427 | adding B |
|
427 | adding B | |
428 | $ echo C > C |
|
428 | $ echo C > C | |
429 | $ hg ci -Am C |
|
429 | $ hg ci -Am C | |
430 | adding C |
|
430 | adding C | |
431 |
|
431 | |||
432 | $ hg up -q 1 |
|
432 | $ hg up -q 1 | |
433 |
|
433 | |||
434 | $ echo D > D |
|
434 | $ echo D > D | |
435 | $ hg ci -Am D |
|
435 | $ hg ci -Am D | |
436 | adding D |
|
436 | adding D | |
437 | created new head |
|
437 | created new head | |
438 | $ hg merge |
|
438 | $ hg merge | |
439 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
439 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
440 | (branch merge, don't forget to commit) |
|
440 | (branch merge, don't forget to commit) | |
441 |
|
441 | |||
442 | $ hg ci -m E |
|
442 | $ hg ci -m E | |
443 |
|
443 | |||
444 | $ hg up -q 0 |
|
444 | $ hg up -q 0 | |
445 |
|
445 | |||
446 | $ echo F > F |
|
446 | $ echo F > F | |
447 | $ hg ci -Am F |
|
447 | $ hg ci -Am F | |
448 | adding F |
|
448 | adding F | |
449 | created new head |
|
449 | created new head | |
450 |
|
450 | |||
451 | $ hg tglog |
|
451 | $ hg tglog | |
452 | @ 5: 'F' |
|
452 | @ 5: 'F' | |
453 | | |
|
453 | | | |
454 | | o 4: 'E' |
|
454 | | o 4: 'E' | |
455 | | |\ |
|
455 | | |\ | |
456 | | | o 3: 'D' |
|
456 | | | o 3: 'D' | |
457 | | | | |
|
457 | | | | | |
458 | | o | 2: 'C' |
|
458 | | o | 2: 'C' | |
459 | | |/ |
|
459 | | |/ | |
460 | | o 1: 'B' |
|
460 | | o 1: 'B' | |
461 | |/ |
|
461 | |/ | |
462 | o 0: 'A' |
|
462 | o 0: 'A' | |
463 |
|
463 | |||
464 | $ cd .. |
|
464 | $ cd .. | |
465 |
|
465 | |||
466 |
|
466 | |||
467 | Rebase and collapse - B onto F: |
|
467 | Rebase and collapse - B onto F: | |
468 |
|
468 | |||
469 | $ hg clone -q -u . d d1 |
|
469 | $ hg clone -q -u . d d1 | |
470 | $ cd d1 |
|
470 | $ cd d1 | |
471 |
|
471 | |||
472 | $ hg rebase -s 1 --collapse |
|
472 | $ hg rebase -s 1 --collapse | |
473 | saved backup bundle to $TESTTMP/d1/.hg/strip-backup/*-backup.hg (glob) |
|
473 | saved backup bundle to $TESTTMP/d1/.hg/strip-backup/*-backup.hg (glob) | |
474 |
|
474 | |||
475 | $ hg tglog |
|
475 | $ hg tglog | |
476 |
|
|
476 | o 2: 'Collapsed revision | |
477 | | * B |
|
477 | | * B | |
478 | | * C |
|
478 | | * C | |
479 | | * D |
|
479 | | * D | |
480 | | * E' |
|
480 | | * E' | |
481 |
|
|
481 | @ 1: 'F' | |
482 | | |
|
482 | | | |
483 | o 0: 'A' |
|
483 | o 0: 'A' | |
484 |
|
484 | |||
485 | $ hg manifest --rev tip |
|
485 | $ hg manifest --rev tip | |
486 | A |
|
486 | A | |
487 | B |
|
487 | B | |
488 | C |
|
488 | C | |
489 | D |
|
489 | D | |
490 | F |
|
490 | F | |
491 |
|
491 | |||
492 | Interactions between collapse and keepbranches |
|
492 | Interactions between collapse and keepbranches | |
493 | $ cd .. |
|
493 | $ cd .. | |
494 | $ hg init e |
|
494 | $ hg init e | |
495 | $ cd e |
|
495 | $ cd e | |
496 | $ echo 'a' > a |
|
496 | $ echo 'a' > a | |
497 | $ hg ci -Am 'A' |
|
497 | $ hg ci -Am 'A' | |
498 | adding a |
|
498 | adding a | |
499 |
|
499 | |||
500 | $ hg branch 'one' |
|
500 | $ hg branch 'one' | |
501 | marked working directory as branch one |
|
501 | marked working directory as branch one | |
502 | (branches are permanent and global, did you want a bookmark?) |
|
502 | (branches are permanent and global, did you want a bookmark?) | |
503 | $ echo 'b' > b |
|
503 | $ echo 'b' > b | |
504 | $ hg ci -Am 'B' |
|
504 | $ hg ci -Am 'B' | |
505 | adding b |
|
505 | adding b | |
506 |
|
506 | |||
507 | $ hg branch 'two' |
|
507 | $ hg branch 'two' | |
508 | marked working directory as branch two |
|
508 | marked working directory as branch two | |
509 | (branches are permanent and global, did you want a bookmark?) |
|
509 | (branches are permanent and global, did you want a bookmark?) | |
510 | $ echo 'c' > c |
|
510 | $ echo 'c' > c | |
511 | $ hg ci -Am 'C' |
|
511 | $ hg ci -Am 'C' | |
512 | adding c |
|
512 | adding c | |
513 |
|
513 | |||
514 | $ hg up -q 0 |
|
514 | $ hg up -q 0 | |
515 | $ echo 'd' > d |
|
515 | $ echo 'd' > d | |
516 | $ hg ci -Am 'D' |
|
516 | $ hg ci -Am 'D' | |
517 | adding d |
|
517 | adding d | |
518 |
|
518 | |||
519 | $ hg tglog |
|
519 | $ hg tglog | |
520 | @ 3: 'D' |
|
520 | @ 3: 'D' | |
521 | | |
|
521 | | | |
522 | | o 2: 'C' two |
|
522 | | o 2: 'C' two | |
523 | | | |
|
523 | | | | |
524 | | o 1: 'B' one |
|
524 | | o 1: 'B' one | |
525 | |/ |
|
525 | |/ | |
526 | o 0: 'A' |
|
526 | o 0: 'A' | |
527 |
|
527 | |||
528 | $ hg rebase --keepbranches --collapse -s 1 -d 3 |
|
528 | $ hg rebase --keepbranches --collapse -s 1 -d 3 | |
529 | abort: cannot collapse multiple named branches |
|
529 | abort: cannot collapse multiple named branches | |
530 | [255] |
|
530 | [255] | |
531 |
|
531 | |||
532 | $ repeatchange() { |
|
532 | $ repeatchange() { | |
533 | > hg checkout $1 |
|
533 | > hg checkout $1 | |
534 | > hg cp d z |
|
534 | > hg cp d z | |
535 | > echo blah >> z |
|
535 | > echo blah >> z | |
536 | > hg commit -Am "$2" --user "$3" |
|
536 | > hg commit -Am "$2" --user "$3" | |
537 | > } |
|
537 | > } | |
538 | $ repeatchange 3 "E" "user1" |
|
538 | $ repeatchange 3 "E" "user1" | |
539 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
539 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
540 | $ repeatchange 3 "E" "user2" |
|
540 | $ repeatchange 3 "E" "user2" | |
541 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
541 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
542 | created new head |
|
542 | created new head | |
543 | $ hg tglog |
|
543 | $ hg tglog | |
544 | @ 5: 'E' |
|
544 | @ 5: 'E' | |
545 | | |
|
545 | | | |
546 | | o 4: 'E' |
|
546 | | o 4: 'E' | |
547 | |/ |
|
547 | |/ | |
548 | o 3: 'D' |
|
548 | o 3: 'D' | |
549 | | |
|
549 | | | |
550 | | o 2: 'C' two |
|
550 | | o 2: 'C' two | |
551 | | | |
|
551 | | | | |
552 | | o 1: 'B' one |
|
552 | | o 1: 'B' one | |
553 | |/ |
|
553 | |/ | |
554 | o 0: 'A' |
|
554 | o 0: 'A' | |
555 |
|
555 | |||
556 | $ hg rebase -s 5 -d 4 |
|
556 | $ hg rebase -s 5 -d 4 | |
557 | saved backup bundle to $TESTTMP/e/.hg/strip-backup/*-backup.hg (glob) |
|
557 | saved backup bundle to $TESTTMP/e/.hg/strip-backup/*-backup.hg (glob) | |
558 | $ hg tglog |
|
558 | $ hg tglog | |
559 | @ 4: 'E' |
|
559 | @ 4: 'E' | |
560 | | |
|
560 | | | |
561 | o 3: 'D' |
|
561 | o 3: 'D' | |
562 | | |
|
562 | | | |
563 | | o 2: 'C' two |
|
563 | | o 2: 'C' two | |
564 | | | |
|
564 | | | | |
565 | | o 1: 'B' one |
|
565 | | o 1: 'B' one | |
566 | |/ |
|
566 | |/ | |
567 | o 0: 'A' |
|
567 | o 0: 'A' | |
568 |
|
568 | |||
569 | $ hg export tip |
|
569 | $ hg export tip | |
570 | # HG changeset patch |
|
570 | # HG changeset patch | |
571 | # User user1 |
|
571 | # User user1 | |
572 | # Date 0 0 |
|
572 | # Date 0 0 | |
573 | # Thu Jan 01 00:00:00 1970 +0000 |
|
573 | # Thu Jan 01 00:00:00 1970 +0000 | |
574 | # Node ID f338eb3c2c7cc5b5915676a2376ba7ac558c5213 |
|
574 | # Node ID f338eb3c2c7cc5b5915676a2376ba7ac558c5213 | |
575 | # Parent 41acb9dca9eb976e84cd21fcb756b4afa5a35c09 |
|
575 | # Parent 41acb9dca9eb976e84cd21fcb756b4afa5a35c09 | |
576 | E |
|
576 | E | |
577 |
|
577 | |||
578 | diff -r 41acb9dca9eb -r f338eb3c2c7c z |
|
578 | diff -r 41acb9dca9eb -r f338eb3c2c7c z | |
579 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
|
579 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
580 | +++ b/z Thu Jan 01 00:00:00 1970 +0000 |
|
580 | +++ b/z Thu Jan 01 00:00:00 1970 +0000 | |
581 | @@ -0,0 +1,2 @@ |
|
581 | @@ -0,0 +1,2 @@ | |
582 | +d |
|
582 | +d | |
583 | +blah |
|
583 | +blah | |
584 |
|
584 | |||
585 | $ cd .. |
|
585 | $ cd .. | |
586 |
|
586 | |||
587 | Rebase, collapse and copies |
|
587 | Rebase, collapse and copies | |
588 |
|
588 | |||
589 | $ hg init copies |
|
589 | $ hg init copies | |
590 | $ cd copies |
|
590 | $ cd copies | |
591 | $ hg unbundle "$TESTDIR/bundles/renames.hg" |
|
591 | $ hg unbundle "$TESTDIR/bundles/renames.hg" | |
592 | adding changesets |
|
592 | adding changesets | |
593 | adding manifests |
|
593 | adding manifests | |
594 | adding file changes |
|
594 | adding file changes | |
595 | added 4 changesets with 11 changes to 7 files (+1 heads) |
|
595 | added 4 changesets with 11 changes to 7 files (+1 heads) | |
596 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
596 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
597 | $ hg up -q tip |
|
597 | $ hg up -q tip | |
598 | $ hg tglog |
|
598 | $ hg tglog | |
599 | @ 3: 'move2' |
|
599 | @ 3: 'move2' | |
600 | | |
|
600 | | | |
601 | o 2: 'move1' |
|
601 | o 2: 'move1' | |
602 | | |
|
602 | | | |
603 | | o 1: 'change' |
|
603 | | o 1: 'change' | |
604 | |/ |
|
604 | |/ | |
605 | o 0: 'add' |
|
605 | o 0: 'add' | |
606 |
|
606 | |||
607 | $ hg rebase --collapse -d 1 |
|
607 | $ hg rebase --collapse -d 1 | |
608 | merging a and d to d |
|
608 | merging a and d to d | |
609 | merging b and e to e |
|
609 | merging b and e to e | |
610 | merging c and f to f |
|
610 | merging c and f to f | |
611 | merging e and g to g |
|
611 | merging e and g to g | |
612 | merging f and c to c |
|
612 | merging f and c to c | |
613 | saved backup bundle to $TESTTMP/copies/.hg/strip-backup/*-backup.hg (glob) |
|
613 | saved backup bundle to $TESTTMP/copies/.hg/strip-backup/*-backup.hg (glob) | |
614 | $ hg st |
|
614 | $ hg st | |
615 | $ hg st --copies --change tip |
|
615 | $ hg st --copies --change tip | |
616 | A d |
|
616 | A d | |
617 | a |
|
617 | a | |
618 | A g |
|
618 | A g | |
619 | b |
|
619 | b | |
620 | R b |
|
620 | R b | |
621 | $ hg up tip -q |
|
621 | $ hg up tip -q | |
622 | $ cat c |
|
622 | $ cat c | |
623 | c |
|
623 | c | |
624 | c |
|
624 | c | |
625 | $ cat d |
|
625 | $ cat d | |
626 | a |
|
626 | a | |
627 | a |
|
627 | a | |
628 | $ cat g |
|
628 | $ cat g | |
629 | b |
|
629 | b | |
630 | b |
|
630 | b | |
631 | $ hg log -r . --template "{file_copies}\n" |
|
631 | $ hg log -r . --template "{file_copies}\n" | |
632 | d (a)g (b) |
|
632 | d (a)g (b) | |
633 |
|
633 | |||
634 | Test collapsing a middle revision in-place |
|
634 | Test collapsing a middle revision in-place | |
635 |
|
635 | |||
636 | $ hg tglog |
|
636 | $ hg tglog | |
637 | @ 2: 'Collapsed revision |
|
637 | @ 2: 'Collapsed revision | |
638 | | * move1 |
|
638 | | * move1 | |
639 | | * move2' |
|
639 | | * move2' | |
640 | o 1: 'change' |
|
640 | o 1: 'change' | |
641 | | |
|
641 | | | |
642 | o 0: 'add' |
|
642 | o 0: 'add' | |
643 |
|
643 | |||
644 | $ hg rebase --collapse -r 1 -d 0 |
|
644 | $ hg rebase --collapse -r 1 -d 0 | |
645 | abort: can't remove original changesets with unrebased descendants |
|
645 | abort: can't remove original changesets with unrebased descendants | |
646 | (use --keep to keep original changesets) |
|
646 | (use --keep to keep original changesets) | |
647 | [255] |
|
647 | [255] | |
648 |
|
648 | |||
649 | Test collapsing in place |
|
649 | Test collapsing in place | |
650 |
|
650 | |||
651 | $ hg rebase --collapse -b . -d 0 |
|
651 | $ hg rebase --collapse -b . -d 0 | |
652 | saved backup bundle to $TESTTMP/copies/.hg/strip-backup/*-backup.hg (glob) |
|
652 | saved backup bundle to $TESTTMP/copies/.hg/strip-backup/*-backup.hg (glob) | |
653 | $ hg st --change tip --copies |
|
653 | $ hg st --change tip --copies | |
654 | M a |
|
654 | M a | |
655 | M c |
|
655 | M c | |
656 | A d |
|
656 | A d | |
657 | a |
|
657 | a | |
658 | A g |
|
658 | A g | |
659 | b |
|
659 | b | |
660 | R b |
|
660 | R b | |
661 | $ hg up tip -q |
|
661 | $ hg up tip -q | |
662 | $ cat a |
|
662 | $ cat a | |
663 | a |
|
663 | a | |
664 | a |
|
664 | a | |
665 | $ cat c |
|
665 | $ cat c | |
666 | c |
|
666 | c | |
667 | c |
|
667 | c | |
668 | $ cat d |
|
668 | $ cat d | |
669 | a |
|
669 | a | |
670 | a |
|
670 | a | |
671 | $ cat g |
|
671 | $ cat g | |
672 | b |
|
672 | b | |
673 | b |
|
673 | b | |
674 | $ cd .. |
|
674 | $ cd .. | |
675 |
|
675 | |||
676 |
|
676 | |||
677 | Test stripping a revision with another child |
|
677 | Test stripping a revision with another child | |
678 |
|
678 | |||
679 | $ hg init f |
|
679 | $ hg init f | |
680 | $ cd f |
|
680 | $ cd f | |
681 |
|
681 | |||
682 | $ echo A > A |
|
682 | $ echo A > A | |
683 | $ hg ci -Am A |
|
683 | $ hg ci -Am A | |
684 | adding A |
|
684 | adding A | |
685 | $ echo B > B |
|
685 | $ echo B > B | |
686 | $ hg ci -Am B |
|
686 | $ hg ci -Am B | |
687 | adding B |
|
687 | adding B | |
688 |
|
688 | |||
689 | $ hg up -q 0 |
|
689 | $ hg up -q 0 | |
690 |
|
690 | |||
691 | $ echo C > C |
|
691 | $ echo C > C | |
692 | $ hg ci -Am C |
|
692 | $ hg ci -Am C | |
693 | adding C |
|
693 | adding C | |
694 | created new head |
|
694 | created new head | |
695 |
|
695 | |||
696 | $ hg tglog |
|
696 | $ hg tglog | |
697 | @ 2: 'C' |
|
697 | @ 2: 'C' | |
698 | | |
|
698 | | | |
699 | | o 1: 'B' |
|
699 | | o 1: 'B' | |
700 | |/ |
|
700 | |/ | |
701 | o 0: 'A' |
|
701 | o 0: 'A' | |
702 |
|
702 | |||
703 |
|
703 | |||
704 |
|
704 | |||
705 | $ hg heads --template="{rev}:{node} {branch}: {desc}\n" |
|
705 | $ hg heads --template="{rev}:{node} {branch}: {desc}\n" | |
706 | 2:c5cefa58fd557f84b72b87f970135984337acbc5 default: C |
|
706 | 2:c5cefa58fd557f84b72b87f970135984337acbc5 default: C | |
707 | 1:27547f69f25460a52fff66ad004e58da7ad3fb56 default: B |
|
707 | 1:27547f69f25460a52fff66ad004e58da7ad3fb56 default: B | |
708 |
|
708 | |||
709 | $ hg strip 2 |
|
709 | $ hg strip 2 | |
710 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
710 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
711 | saved backup bundle to $TESTTMP/f/.hg/strip-backup/*-backup.hg (glob) |
|
711 | saved backup bundle to $TESTTMP/f/.hg/strip-backup/*-backup.hg (glob) | |
712 |
|
712 | |||
713 | $ hg tglog |
|
713 | $ hg tglog | |
714 | o 1: 'B' |
|
714 | o 1: 'B' | |
715 | | |
|
715 | | | |
716 | @ 0: 'A' |
|
716 | @ 0: 'A' | |
717 |
|
717 | |||
718 |
|
718 | |||
719 |
|
719 | |||
720 | $ hg heads --template="{rev}:{node} {branch}: {desc}\n" |
|
720 | $ hg heads --template="{rev}:{node} {branch}: {desc}\n" | |
721 | 1:27547f69f25460a52fff66ad004e58da7ad3fb56 default: B |
|
721 | 1:27547f69f25460a52fff66ad004e58da7ad3fb56 default: B | |
722 |
|
722 | |||
723 | $ cd .. |
|
723 | $ cd .. | |
724 |
|
724 | |||
725 | Test collapsing changes that add then remove a file |
|
725 | Test collapsing changes that add then remove a file | |
726 |
|
726 | |||
727 | $ hg init collapseaddremove |
|
727 | $ hg init collapseaddremove | |
728 | $ cd collapseaddremove |
|
728 | $ cd collapseaddremove | |
729 |
|
729 | |||
730 | $ touch base |
|
730 | $ touch base | |
731 | $ hg commit -Am base |
|
731 | $ hg commit -Am base | |
732 | adding base |
|
732 | adding base | |
733 | $ touch a |
|
733 | $ touch a | |
734 | $ hg commit -Am a |
|
734 | $ hg commit -Am a | |
735 | adding a |
|
735 | adding a | |
736 | $ hg rm a |
|
736 | $ hg rm a | |
737 | $ touch b |
|
737 | $ touch b | |
738 | $ hg commit -Am b |
|
738 | $ hg commit -Am b | |
739 | adding b |
|
739 | adding b | |
740 | $ hg rebase -d 0 -r "1::2" --collapse -m collapsed |
|
740 | $ hg rebase -d 0 -r "1::2" --collapse -m collapsed | |
741 | saved backup bundle to $TESTTMP/collapseaddremove/.hg/strip-backup/*-backup.hg (glob) |
|
741 | saved backup bundle to $TESTTMP/collapseaddremove/.hg/strip-backup/*-backup.hg (glob) | |
742 | $ hg tglog |
|
742 | $ hg tglog | |
743 |
|
|
743 | o 1: 'collapsed' | |
744 | | |
|
744 | | | |
745 |
|
|
745 | @ 0: 'base' | |
746 |
|
746 | |||
747 | $ hg manifest --rev tip |
|
747 | $ hg manifest --rev tip | |
748 | b |
|
748 | b | |
749 | base |
|
749 | base | |
750 |
|
750 | |||
751 | $ cd .. |
|
751 | $ cd .. |
@@ -1,398 +1,398 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 |
|
13 | |||
14 | $ hg init a |
|
14 | $ hg init a | |
15 | $ cd a |
|
15 | $ cd a | |
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
17 | adding changesets |
|
17 | adding changesets | |
18 | adding manifests |
|
18 | adding manifests | |
19 | adding file changes |
|
19 | adding file changes | |
20 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
20 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
21 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
21 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
22 | $ hg up tip |
|
22 | $ hg up tip | |
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
24 |
|
24 | |||
25 | $ cd .. |
|
25 | $ cd .. | |
26 |
|
26 | |||
27 |
|
27 | |||
28 | Rebasing D onto H detaching from C: |
|
28 | Rebasing D onto H detaching from C: | |
29 |
|
29 | |||
30 | $ hg clone -q -u . a a1 |
|
30 | $ hg clone -q -u . a a1 | |
31 | $ cd a1 |
|
31 | $ cd a1 | |
32 |
|
32 | |||
33 | $ hg tglog |
|
33 | $ hg tglog | |
34 | @ 7: 'H' |
|
34 | @ 7: 'H' | |
35 | | |
|
35 | | | |
36 | | o 6: 'G' |
|
36 | | o 6: 'G' | |
37 | |/| |
|
37 | |/| | |
38 | o | 5: 'F' |
|
38 | o | 5: 'F' | |
39 | | | |
|
39 | | | | |
40 | | o 4: 'E' |
|
40 | | o 4: 'E' | |
41 | |/ |
|
41 | |/ | |
42 | | o 3: 'D' |
|
42 | | o 3: 'D' | |
43 | | | |
|
43 | | | | |
44 | | o 2: 'C' |
|
44 | | o 2: 'C' | |
45 | | | |
|
45 | | | | |
46 | | o 1: 'B' |
|
46 | | o 1: 'B' | |
47 | |/ |
|
47 | |/ | |
48 | o 0: 'A' |
|
48 | o 0: 'A' | |
49 |
|
49 | |||
50 | $ hg phase --force --secret 3 |
|
50 | $ hg phase --force --secret 3 | |
51 | $ hg rebase -s 3 -d 7 |
|
51 | $ hg rebase -s 3 -d 7 | |
52 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
52 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
53 |
|
53 | |||
54 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
54 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
55 |
|
|
55 | o 7:secret 'D' | |
56 | | |
|
56 | | | |
57 |
|
|
57 | @ 6:draft 'H' | |
58 | | |
|
58 | | | |
59 | | o 5:draft 'G' |
|
59 | | o 5:draft 'G' | |
60 | |/| |
|
60 | |/| | |
61 | o | 4:draft 'F' |
|
61 | o | 4:draft 'F' | |
62 | | | |
|
62 | | | | |
63 | | o 3:draft 'E' |
|
63 | | o 3:draft 'E' | |
64 | |/ |
|
64 | |/ | |
65 | | o 2:draft 'C' |
|
65 | | o 2:draft 'C' | |
66 | | | |
|
66 | | | | |
67 | | o 1:draft 'B' |
|
67 | | o 1:draft 'B' | |
68 | |/ |
|
68 | |/ | |
69 | o 0:draft 'A' |
|
69 | o 0:draft 'A' | |
70 |
|
70 | |||
71 | $ hg manifest --rev tip |
|
71 | $ hg manifest --rev tip | |
72 | A |
|
72 | A | |
73 | D |
|
73 | D | |
74 | F |
|
74 | F | |
75 | H |
|
75 | H | |
76 |
|
76 | |||
77 | $ cd .. |
|
77 | $ cd .. | |
78 |
|
78 | |||
79 |
|
79 | |||
80 | Rebasing C onto H detaching from B: |
|
80 | Rebasing C onto H detaching from B: | |
81 |
|
81 | |||
82 | $ hg clone -q -u . a a2 |
|
82 | $ hg clone -q -u . a a2 | |
83 | $ cd a2 |
|
83 | $ cd a2 | |
84 |
|
84 | |||
85 | $ hg tglog |
|
85 | $ hg tglog | |
86 | @ 7: 'H' |
|
86 | @ 7: 'H' | |
87 | | |
|
87 | | | |
88 | | o 6: 'G' |
|
88 | | o 6: 'G' | |
89 | |/| |
|
89 | |/| | |
90 | o | 5: 'F' |
|
90 | o | 5: 'F' | |
91 | | | |
|
91 | | | | |
92 | | o 4: 'E' |
|
92 | | o 4: 'E' | |
93 | |/ |
|
93 | |/ | |
94 | | o 3: 'D' |
|
94 | | o 3: 'D' | |
95 | | | |
|
95 | | | | |
96 | | o 2: 'C' |
|
96 | | o 2: 'C' | |
97 | | | |
|
97 | | | | |
98 | | o 1: 'B' |
|
98 | | o 1: 'B' | |
99 | |/ |
|
99 | |/ | |
100 | o 0: 'A' |
|
100 | o 0: 'A' | |
101 |
|
101 | |||
102 | $ hg rebase -s 2 -d 7 |
|
102 | $ hg rebase -s 2 -d 7 | |
103 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
103 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
104 |
|
104 | |||
105 | $ hg tglog |
|
105 | $ hg tglog | |
106 |
|
|
106 | o 7: 'D' | |
107 | | |
|
107 | | | |
108 | o 6: 'C' |
|
108 | o 6: 'C' | |
109 | | |
|
109 | | | |
110 |
|
|
110 | @ 5: 'H' | |
111 | | |
|
111 | | | |
112 | | o 4: 'G' |
|
112 | | o 4: 'G' | |
113 | |/| |
|
113 | |/| | |
114 | o | 3: 'F' |
|
114 | o | 3: 'F' | |
115 | | | |
|
115 | | | | |
116 | | o 2: 'E' |
|
116 | | o 2: 'E' | |
117 | |/ |
|
117 | |/ | |
118 | | o 1: 'B' |
|
118 | | o 1: 'B' | |
119 | |/ |
|
119 | |/ | |
120 | o 0: 'A' |
|
120 | o 0: 'A' | |
121 |
|
121 | |||
122 | $ hg manifest --rev tip |
|
122 | $ hg manifest --rev tip | |
123 | A |
|
123 | A | |
124 | C |
|
124 | C | |
125 | D |
|
125 | D | |
126 | F |
|
126 | F | |
127 | H |
|
127 | H | |
128 |
|
128 | |||
129 | $ cd .. |
|
129 | $ cd .. | |
130 |
|
130 | |||
131 |
|
131 | |||
132 | Rebasing B onto H using detach (same as not using it): |
|
132 | Rebasing B onto H using detach (same as not using it): | |
133 |
|
133 | |||
134 | $ hg clone -q -u . a a3 |
|
134 | $ hg clone -q -u . a a3 | |
135 | $ cd a3 |
|
135 | $ cd a3 | |
136 |
|
136 | |||
137 | $ hg tglog |
|
137 | $ hg tglog | |
138 | @ 7: 'H' |
|
138 | @ 7: 'H' | |
139 | | |
|
139 | | | |
140 | | o 6: 'G' |
|
140 | | o 6: 'G' | |
141 | |/| |
|
141 | |/| | |
142 | o | 5: 'F' |
|
142 | o | 5: 'F' | |
143 | | | |
|
143 | | | | |
144 | | o 4: 'E' |
|
144 | | o 4: 'E' | |
145 | |/ |
|
145 | |/ | |
146 | | o 3: 'D' |
|
146 | | o 3: 'D' | |
147 | | | |
|
147 | | | | |
148 | | o 2: 'C' |
|
148 | | o 2: 'C' | |
149 | | | |
|
149 | | | | |
150 | | o 1: 'B' |
|
150 | | o 1: 'B' | |
151 | |/ |
|
151 | |/ | |
152 | o 0: 'A' |
|
152 | o 0: 'A' | |
153 |
|
153 | |||
154 | $ hg rebase -s 1 -d 7 |
|
154 | $ hg rebase -s 1 -d 7 | |
155 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
155 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
156 |
|
156 | |||
157 | $ hg tglog |
|
157 | $ hg tglog | |
158 |
|
|
158 | o 7: 'D' | |
159 | | |
|
159 | | | |
160 | o 6: 'C' |
|
160 | o 6: 'C' | |
161 | | |
|
161 | | | |
162 | o 5: 'B' |
|
162 | o 5: 'B' | |
163 | | |
|
163 | | | |
164 |
|
|
164 | @ 4: 'H' | |
165 | | |
|
165 | | | |
166 | | o 3: 'G' |
|
166 | | o 3: 'G' | |
167 | |/| |
|
167 | |/| | |
168 | o | 2: 'F' |
|
168 | o | 2: 'F' | |
169 | | | |
|
169 | | | | |
170 | | o 1: 'E' |
|
170 | | o 1: 'E' | |
171 | |/ |
|
171 | |/ | |
172 | o 0: 'A' |
|
172 | o 0: 'A' | |
173 |
|
173 | |||
174 | $ hg manifest --rev tip |
|
174 | $ hg manifest --rev tip | |
175 | A |
|
175 | A | |
176 | B |
|
176 | B | |
177 | C |
|
177 | C | |
178 | D |
|
178 | D | |
179 | F |
|
179 | F | |
180 | H |
|
180 | H | |
181 |
|
181 | |||
182 | $ cd .. |
|
182 | $ cd .. | |
183 |
|
183 | |||
184 |
|
184 | |||
185 | Rebasing C onto H detaching from B and collapsing: |
|
185 | Rebasing C onto H detaching from B and collapsing: | |
186 |
|
186 | |||
187 | $ hg clone -q -u . a a4 |
|
187 | $ hg clone -q -u . a a4 | |
188 | $ cd a4 |
|
188 | $ cd a4 | |
189 | $ hg phase --force --secret 3 |
|
189 | $ hg phase --force --secret 3 | |
190 |
|
190 | |||
191 | $ hg tglog |
|
191 | $ hg tglog | |
192 | @ 7: 'H' |
|
192 | @ 7: 'H' | |
193 | | |
|
193 | | | |
194 | | o 6: 'G' |
|
194 | | o 6: 'G' | |
195 | |/| |
|
195 | |/| | |
196 | o | 5: 'F' |
|
196 | o | 5: 'F' | |
197 | | | |
|
197 | | | | |
198 | | o 4: 'E' |
|
198 | | o 4: 'E' | |
199 | |/ |
|
199 | |/ | |
200 | | o 3: 'D' |
|
200 | | o 3: 'D' | |
201 | | | |
|
201 | | | | |
202 | | o 2: 'C' |
|
202 | | o 2: 'C' | |
203 | | | |
|
203 | | | | |
204 | | o 1: 'B' |
|
204 | | o 1: 'B' | |
205 | |/ |
|
205 | |/ | |
206 | o 0: 'A' |
|
206 | o 0: 'A' | |
207 |
|
207 | |||
208 | $ hg rebase --collapse -s 2 -d 7 |
|
208 | $ hg rebase --collapse -s 2 -d 7 | |
209 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) |
|
209 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) | |
210 |
|
210 | |||
211 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
211 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
212 |
|
|
212 | o 6:secret 'Collapsed revision | |
213 | | * C |
|
213 | | * C | |
214 | | * D' |
|
214 | | * D' | |
215 |
|
|
215 | @ 5:draft 'H' | |
216 | | |
|
216 | | | |
217 | | o 4:draft 'G' |
|
217 | | o 4:draft 'G' | |
218 | |/| |
|
218 | |/| | |
219 | o | 3:draft 'F' |
|
219 | o | 3:draft 'F' | |
220 | | | |
|
220 | | | | |
221 | | o 2:draft 'E' |
|
221 | | o 2:draft 'E' | |
222 | |/ |
|
222 | |/ | |
223 | | o 1:draft 'B' |
|
223 | | o 1:draft 'B' | |
224 | |/ |
|
224 | |/ | |
225 | o 0:draft 'A' |
|
225 | o 0:draft 'A' | |
226 |
|
226 | |||
227 | $ hg manifest --rev tip |
|
227 | $ hg manifest --rev tip | |
228 | A |
|
228 | A | |
229 | C |
|
229 | C | |
230 | D |
|
230 | D | |
231 | F |
|
231 | F | |
232 | H |
|
232 | H | |
233 |
|
233 | |||
234 | $ cd .. |
|
234 | $ cd .. | |
235 |
|
235 | |||
236 | Rebasing across null as ancestor |
|
236 | Rebasing across null as ancestor | |
237 | $ hg clone -q -U a a5 |
|
237 | $ hg clone -q -U a a5 | |
238 |
|
238 | |||
239 | $ cd a5 |
|
239 | $ cd a5 | |
240 |
|
240 | |||
241 | $ echo x > x |
|
241 | $ echo x > x | |
242 |
|
242 | |||
243 | $ hg add x |
|
243 | $ hg add x | |
244 |
|
244 | |||
245 | $ hg ci -m "extra branch" |
|
245 | $ hg ci -m "extra branch" | |
246 | created new head |
|
246 | created new head | |
247 |
|
247 | |||
248 | $ hg tglog |
|
248 | $ hg tglog | |
249 | @ 8: 'extra branch' |
|
249 | @ 8: 'extra branch' | |
250 |
|
250 | |||
251 | o 7: 'H' |
|
251 | o 7: 'H' | |
252 | | |
|
252 | | | |
253 | | o 6: 'G' |
|
253 | | o 6: 'G' | |
254 | |/| |
|
254 | |/| | |
255 | o | 5: 'F' |
|
255 | o | 5: 'F' | |
256 | | | |
|
256 | | | | |
257 | | o 4: 'E' |
|
257 | | o 4: 'E' | |
258 | |/ |
|
258 | |/ | |
259 | | o 3: 'D' |
|
259 | | o 3: 'D' | |
260 | | | |
|
260 | | | | |
261 | | o 2: 'C' |
|
261 | | o 2: 'C' | |
262 | | | |
|
262 | | | | |
263 | | o 1: 'B' |
|
263 | | o 1: 'B' | |
264 | |/ |
|
264 | |/ | |
265 | o 0: 'A' |
|
265 | o 0: 'A' | |
266 |
|
266 | |||
267 | $ hg rebase -s 1 -d tip |
|
267 | $ hg rebase -s 1 -d tip | |
268 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) |
|
268 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) | |
269 |
|
269 | |||
270 | $ hg tglog |
|
270 | $ hg tglog | |
271 |
|
|
271 | o 8: 'D' | |
272 | | |
|
272 | | | |
273 | o 7: 'C' |
|
273 | o 7: 'C' | |
274 | | |
|
274 | | | |
275 | o 6: 'B' |
|
275 | o 6: 'B' | |
276 | | |
|
276 | | | |
277 |
|
|
277 | @ 5: 'extra branch' | |
278 |
|
278 | |||
279 | o 4: 'H' |
|
279 | o 4: 'H' | |
280 | | |
|
280 | | | |
281 | | o 3: 'G' |
|
281 | | o 3: 'G' | |
282 | |/| |
|
282 | |/| | |
283 | o | 2: 'F' |
|
283 | o | 2: 'F' | |
284 | | | |
|
284 | | | | |
285 | | o 1: 'E' |
|
285 | | o 1: 'E' | |
286 | |/ |
|
286 | |/ | |
287 | o 0: 'A' |
|
287 | o 0: 'A' | |
288 |
|
288 | |||
289 |
|
289 | |||
290 | $ hg rebase -d 5 -s 7 |
|
290 | $ hg rebase -d 5 -s 7 | |
291 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/13547172c9c0-backup.hg (glob) |
|
291 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/13547172c9c0-backup.hg (glob) | |
292 | $ hg tglog |
|
292 | $ hg tglog | |
293 |
|
|
293 | o 8: 'D' | |
294 | | |
|
294 | | | |
295 | o 7: 'C' |
|
295 | o 7: 'C' | |
296 | | |
|
296 | | | |
297 | | o 6: 'B' |
|
297 | | o 6: 'B' | |
298 | |/ |
|
298 | |/ | |
299 |
|
|
299 | @ 5: 'extra branch' | |
300 |
|
300 | |||
301 | o 4: 'H' |
|
301 | o 4: 'H' | |
302 | | |
|
302 | | | |
303 | | o 3: 'G' |
|
303 | | o 3: 'G' | |
304 | |/| |
|
304 | |/| | |
305 | o | 2: 'F' |
|
305 | o | 2: 'F' | |
306 | | | |
|
306 | | | | |
307 | | o 1: 'E' |
|
307 | | o 1: 'E' | |
308 | |/ |
|
308 | |/ | |
309 | o 0: 'A' |
|
309 | o 0: 'A' | |
310 |
|
310 | |||
311 | $ cd .. |
|
311 | $ cd .. | |
312 |
|
312 | |||
313 | Verify that target is not selected as external rev (issue3085) |
|
313 | Verify that target is not selected as external rev (issue3085) | |
314 |
|
314 | |||
315 | $ hg clone -q -U a a6 |
|
315 | $ hg clone -q -U a a6 | |
316 | $ cd a6 |
|
316 | $ cd a6 | |
317 | $ hg up -q 6 |
|
317 | $ hg up -q 6 | |
318 |
|
318 | |||
319 | $ echo "I" >> E |
|
319 | $ echo "I" >> E | |
320 | $ hg ci -m "I" |
|
320 | $ hg ci -m "I" | |
321 | $ hg merge 7 |
|
321 | $ hg merge 7 | |
322 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
322 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
323 | (branch merge, don't forget to commit) |
|
323 | (branch merge, don't forget to commit) | |
324 | $ hg ci -m "Merge" |
|
324 | $ hg ci -m "Merge" | |
325 | $ echo "J" >> F |
|
325 | $ echo "J" >> F | |
326 | $ hg ci -m "J" |
|
326 | $ hg ci -m "J" | |
327 |
|
327 | |||
328 | $ hg rebase -s 8 -d 7 --collapse --config ui.merge=internal:other |
|
328 | $ hg rebase -s 8 -d 7 --collapse --config ui.merge=internal:other | |
329 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) |
|
329 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) | |
330 |
|
330 | |||
331 | $ hg tglog |
|
331 | $ hg tglog | |
332 |
|
|
332 | o 8: 'Collapsed revision | |
333 | | * I |
|
333 | | * I | |
334 | | * Merge |
|
334 | | * Merge | |
335 | | * J' |
|
335 | | * J' | |
336 |
|
|
336 | @ 7: 'H' | |
337 | | |
|
337 | | | |
338 | | o 6: 'G' |
|
338 | | o 6: 'G' | |
339 | |/| |
|
339 | |/| | |
340 | o | 5: 'F' |
|
340 | o | 5: 'F' | |
341 | | | |
|
341 | | | | |
342 | | o 4: 'E' |
|
342 | | o 4: 'E' | |
343 | |/ |
|
343 | |/ | |
344 | | o 3: 'D' |
|
344 | | o 3: 'D' | |
345 | | | |
|
345 | | | | |
346 | | o 2: 'C' |
|
346 | | o 2: 'C' | |
347 | | | |
|
347 | | | | |
348 | | o 1: 'B' |
|
348 | | o 1: 'B' | |
349 | |/ |
|
349 | |/ | |
350 | o 0: 'A' |
|
350 | o 0: 'A' | |
351 |
|
351 | |||
352 |
|
352 | |||
353 | $ hg log --rev tip |
|
353 | $ hg log --rev tip | |
354 | changeset: 8:9472f4b1d736 |
|
354 | changeset: 8:9472f4b1d736 | |
355 | tag: tip |
|
355 | tag: tip | |
356 | user: test |
|
356 | user: test | |
357 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
357 | date: Thu Jan 01 00:00:00 1970 +0000 | |
358 | summary: Collapsed revision |
|
358 | summary: Collapsed revision | |
359 |
|
359 | |||
360 |
|
360 | |||
361 | $ cd .. |
|
361 | $ cd .. | |
362 |
|
362 | |||
363 | Ensure --continue restores a correct state (issue3046) and phase: |
|
363 | Ensure --continue restores a correct state (issue3046) and phase: | |
364 | $ hg clone -q a a7 |
|
364 | $ hg clone -q a a7 | |
365 | $ cd a7 |
|
365 | $ cd a7 | |
366 | $ hg up -q 3 |
|
366 | $ hg up -q 3 | |
367 | $ echo 'H2' > H |
|
367 | $ echo 'H2' > H | |
368 | $ hg ci -A -m 'H2' |
|
368 | $ hg ci -A -m 'H2' | |
369 | adding H |
|
369 | adding H | |
370 | $ hg phase --force --secret 8 |
|
370 | $ hg phase --force --secret 8 | |
371 | $ hg rebase -s 8 -d 7 --config ui.merge=internal:fail |
|
371 | $ hg rebase -s 8 -d 7 --config ui.merge=internal:fail | |
372 | merging H |
|
372 | merging H | |
373 | warning: conflicts during merge. |
|
373 | warning: conflicts during merge. | |
374 | merging H incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
374 | merging H incomplete! (edit conflicts, then use 'hg resolve --mark') | |
375 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
375 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
376 | [1] |
|
376 | [1] | |
377 | $ hg resolve --all -t internal:local |
|
377 | $ hg resolve --all -t internal:local | |
378 | $ hg rebase -c |
|
378 | $ hg rebase -c | |
379 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/6215fafa5447-backup.hg (glob) |
|
379 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/6215fafa5447-backup.hg (glob) | |
380 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
380 | $ hg log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
381 | @ 7:draft 'H' |
|
381 | @ 7:draft 'H' | |
382 | | |
|
382 | | | |
383 | | o 6:draft 'G' |
|
383 | | o 6:draft 'G' | |
384 | |/| |
|
384 | |/| | |
385 | o | 5:draft 'F' |
|
385 | o | 5:draft 'F' | |
386 | | | |
|
386 | | | | |
387 | | o 4:draft 'E' |
|
387 | | o 4:draft 'E' | |
388 | |/ |
|
388 | |/ | |
389 | | o 3:draft 'D' |
|
389 | | o 3:draft 'D' | |
390 | | | |
|
390 | | | | |
391 | | o 2:draft 'C' |
|
391 | | o 2:draft 'C' | |
392 | | | |
|
392 | | | | |
393 | | o 1:draft 'B' |
|
393 | | o 1:draft 'B' | |
394 | |/ |
|
394 | |/ | |
395 | o 0:draft 'A' |
|
395 | o 0:draft 'A' | |
396 |
|
396 | |||
397 |
|
397 | |||
398 | $ cd .. |
|
398 | $ cd .. |
@@ -1,267 +1,267 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
11 | > tglogp = log -G --template "{rev}:{phase} '{desc}' {branches}\n" |
|
11 | > tglogp = log -G --template "{rev}:{phase} '{desc}' {branches}\n" | |
12 | > EOF |
|
12 | > EOF | |
13 |
|
13 | |||
14 |
|
14 | |||
15 | $ hg init a |
|
15 | $ hg init a | |
16 | $ cd a |
|
16 | $ cd a | |
17 |
|
17 | |||
18 | $ echo A > A |
|
18 | $ echo A > A | |
19 | $ hg ci -Am A |
|
19 | $ hg ci -Am A | |
20 | adding A |
|
20 | adding A | |
21 |
|
21 | |||
22 | $ echo B > B |
|
22 | $ echo B > B | |
23 | $ hg ci -Am B |
|
23 | $ hg ci -Am B | |
24 | adding B |
|
24 | adding B | |
25 |
|
25 | |||
26 | $ echo C >> A |
|
26 | $ echo C >> A | |
27 | $ hg ci -m C |
|
27 | $ hg ci -m C | |
28 |
|
28 | |||
29 | $ hg up -q -C 0 |
|
29 | $ hg up -q -C 0 | |
30 |
|
30 | |||
31 | $ echo D >> A |
|
31 | $ echo D >> A | |
32 | $ hg ci -m D |
|
32 | $ hg ci -m D | |
33 | created new head |
|
33 | created new head | |
34 |
|
34 | |||
35 | $ echo E > E |
|
35 | $ echo E > E | |
36 | $ hg ci -Am E |
|
36 | $ hg ci -Am E | |
37 | adding E |
|
37 | adding E | |
38 |
|
38 | |||
39 | $ cd .. |
|
39 | $ cd .. | |
40 |
|
40 | |||
41 |
|
41 | |||
42 | Changes during an interruption - continue: |
|
42 | Changes during an interruption - continue: | |
43 |
|
43 | |||
44 | $ hg clone -q -u . a a1 |
|
44 | $ hg clone -q -u . a a1 | |
45 | $ cd a1 |
|
45 | $ cd a1 | |
46 |
|
46 | |||
47 | $ hg tglog |
|
47 | $ hg tglog | |
48 | @ 4: 'E' |
|
48 | @ 4: 'E' | |
49 | | |
|
49 | | | |
50 | o 3: 'D' |
|
50 | o 3: 'D' | |
51 | | |
|
51 | | | |
52 | | o 2: 'C' |
|
52 | | o 2: 'C' | |
53 | | | |
|
53 | | | | |
54 | | o 1: 'B' |
|
54 | | o 1: 'B' | |
55 | |/ |
|
55 | |/ | |
56 | o 0: 'A' |
|
56 | o 0: 'A' | |
57 |
|
57 | |||
58 | Rebasing B onto E: |
|
58 | Rebasing B onto E: | |
59 |
|
59 | |||
60 | $ hg rebase -s 1 -d 4 |
|
60 | $ hg rebase -s 1 -d 4 | |
61 | merging A |
|
61 | merging A | |
62 | warning: conflicts during merge. |
|
62 | warning: conflicts during merge. | |
63 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
63 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
64 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
64 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
65 | [1] |
|
65 | [1] | |
66 |
|
66 | |||
67 | Force a commit on C during the interruption: |
|
67 | Force a commit on C during the interruption: | |
68 |
|
68 | |||
69 | $ hg up -q -C 2 --config 'extensions.rebase=!' |
|
69 | $ hg up -q -C 2 --config 'extensions.rebase=!' | |
70 |
|
70 | |||
71 | $ echo 'Extra' > Extra |
|
71 | $ echo 'Extra' > Extra | |
72 | $ hg add Extra |
|
72 | $ hg add Extra | |
73 | $ hg ci -m 'Extra' --config 'extensions.rebase=!' |
|
73 | $ hg ci -m 'Extra' --config 'extensions.rebase=!' | |
74 |
|
74 | |||
75 | Force this commit onto secret phase |
|
75 | Force this commit onto secret phase | |
76 |
|
76 | |||
77 | $ hg phase --force --secret 6 |
|
77 | $ hg phase --force --secret 6 | |
78 |
|
78 | |||
79 | $ hg tglogp |
|
79 | $ hg tglogp | |
80 | @ 6:secret 'Extra' |
|
80 | @ 6:secret 'Extra' | |
81 | | |
|
81 | | | |
82 | | o 5:draft 'B' |
|
82 | | o 5:draft 'B' | |
83 | | | |
|
83 | | | | |
84 | | o 4:draft 'E' |
|
84 | | o 4:draft 'E' | |
85 | | | |
|
85 | | | | |
86 | | o 3:draft 'D' |
|
86 | | o 3:draft 'D' | |
87 | | | |
|
87 | | | | |
88 | o | 2:draft 'C' |
|
88 | o | 2:draft 'C' | |
89 | | | |
|
89 | | | | |
90 | o | 1:draft 'B' |
|
90 | o | 1:draft 'B' | |
91 | |/ |
|
91 | |/ | |
92 | o 0:draft 'A' |
|
92 | o 0:draft 'A' | |
93 |
|
93 | |||
94 | Resume the rebasing: |
|
94 | Resume the rebasing: | |
95 |
|
95 | |||
96 | $ hg rebase --continue |
|
96 | $ hg rebase --continue | |
97 | merging A |
|
97 | merging A | |
98 | warning: conflicts during merge. |
|
98 | warning: conflicts during merge. | |
99 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
99 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
100 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
100 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
101 | [1] |
|
101 | [1] | |
102 |
|
102 | |||
103 | Solve the conflict and go on: |
|
103 | Solve the conflict and go on: | |
104 |
|
104 | |||
105 | $ echo 'conflict solved' > A |
|
105 | $ echo 'conflict solved' > A | |
106 | $ rm A.orig |
|
106 | $ rm A.orig | |
107 | $ hg resolve -m A |
|
107 | $ hg resolve -m A | |
108 |
|
108 | |||
109 | $ hg rebase --continue |
|
109 | $ hg rebase --continue | |
110 | warning: new changesets detected on source branch, not stripping |
|
110 | warning: new changesets detected on source branch, not stripping | |
111 |
|
111 | |||
112 | $ hg tglogp |
|
112 | $ hg tglogp | |
113 |
|
|
113 | o 7:draft 'C' | |
114 | | |
|
114 | | | |
115 | | o 6:secret 'Extra' |
|
115 | | o 6:secret 'Extra' | |
116 | | | |
|
116 | | | | |
117 | o | 5:draft 'B' |
|
117 | o | 5:draft 'B' | |
118 | | | |
|
118 | | | | |
119 |
|
|
119 | @ | 4:draft 'E' | |
120 | | | |
|
120 | | | | |
121 | o | 3:draft 'D' |
|
121 | o | 3:draft 'D' | |
122 | | | |
|
122 | | | | |
123 | | o 2:draft 'C' |
|
123 | | o 2:draft 'C' | |
124 | | | |
|
124 | | | | |
125 | | o 1:draft 'B' |
|
125 | | o 1:draft 'B' | |
126 | |/ |
|
126 | |/ | |
127 | o 0:draft 'A' |
|
127 | o 0:draft 'A' | |
128 |
|
128 | |||
129 | $ cd .. |
|
129 | $ cd .. | |
130 |
|
130 | |||
131 |
|
131 | |||
132 | Changes during an interruption - abort: |
|
132 | Changes during an interruption - abort: | |
133 |
|
133 | |||
134 | $ hg clone -q -u . a a2 |
|
134 | $ hg clone -q -u . a a2 | |
135 | $ cd a2 |
|
135 | $ cd a2 | |
136 |
|
136 | |||
137 | $ hg tglog |
|
137 | $ hg tglog | |
138 | @ 4: 'E' |
|
138 | @ 4: 'E' | |
139 | | |
|
139 | | | |
140 | o 3: 'D' |
|
140 | o 3: 'D' | |
141 | | |
|
141 | | | |
142 | | o 2: 'C' |
|
142 | | o 2: 'C' | |
143 | | | |
|
143 | | | | |
144 | | o 1: 'B' |
|
144 | | o 1: 'B' | |
145 | |/ |
|
145 | |/ | |
146 | o 0: 'A' |
|
146 | o 0: 'A' | |
147 |
|
147 | |||
148 | Rebasing B onto E: |
|
148 | Rebasing B onto E: | |
149 |
|
149 | |||
150 | $ hg rebase -s 1 -d 4 |
|
150 | $ hg rebase -s 1 -d 4 | |
151 | merging A |
|
151 | merging A | |
152 | warning: conflicts during merge. |
|
152 | warning: conflicts during merge. | |
153 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
153 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
154 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
154 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
155 | [1] |
|
155 | [1] | |
156 |
|
156 | |||
157 | Force a commit on B' during the interruption: |
|
157 | Force a commit on B' during the interruption: | |
158 |
|
158 | |||
159 | $ hg up -q -C 5 --config 'extensions.rebase=!' |
|
159 | $ hg up -q -C 5 --config 'extensions.rebase=!' | |
160 |
|
160 | |||
161 | $ echo 'Extra' > Extra |
|
161 | $ echo 'Extra' > Extra | |
162 | $ hg add Extra |
|
162 | $ hg add Extra | |
163 | $ hg ci -m 'Extra' --config 'extensions.rebase=!' |
|
163 | $ hg ci -m 'Extra' --config 'extensions.rebase=!' | |
164 |
|
164 | |||
165 | $ hg tglog |
|
165 | $ hg tglog | |
166 | @ 6: 'Extra' |
|
166 | @ 6: 'Extra' | |
167 | | |
|
167 | | | |
168 | o 5: 'B' |
|
168 | o 5: 'B' | |
169 | | |
|
169 | | | |
170 | o 4: 'E' |
|
170 | o 4: 'E' | |
171 | | |
|
171 | | | |
172 | o 3: 'D' |
|
172 | o 3: 'D' | |
173 | | |
|
173 | | | |
174 | | o 2: 'C' |
|
174 | | o 2: 'C' | |
175 | | | |
|
175 | | | | |
176 | | o 1: 'B' |
|
176 | | o 1: 'B' | |
177 | |/ |
|
177 | |/ | |
178 | o 0: 'A' |
|
178 | o 0: 'A' | |
179 |
|
179 | |||
180 | Abort the rebasing: |
|
180 | Abort the rebasing: | |
181 |
|
181 | |||
182 | $ hg rebase --abort |
|
182 | $ hg rebase --abort | |
183 | warning: new changesets detected on target branch, can't strip |
|
183 | warning: new changesets detected on target branch, can't strip | |
184 | rebase aborted |
|
184 | rebase aborted | |
185 |
|
185 | |||
186 | $ hg tglog |
|
186 | $ hg tglog | |
187 | @ 6: 'Extra' |
|
187 | @ 6: 'Extra' | |
188 | | |
|
188 | | | |
189 | o 5: 'B' |
|
189 | o 5: 'B' | |
190 | | |
|
190 | | | |
191 | o 4: 'E' |
|
191 | o 4: 'E' | |
192 | | |
|
192 | | | |
193 | o 3: 'D' |
|
193 | o 3: 'D' | |
194 | | |
|
194 | | | |
195 | | o 2: 'C' |
|
195 | | o 2: 'C' | |
196 | | | |
|
196 | | | | |
197 | | o 1: 'B' |
|
197 | | o 1: 'B' | |
198 | |/ |
|
198 | |/ | |
199 | o 0: 'A' |
|
199 | o 0: 'A' | |
200 |
|
200 | |||
201 | $ cd .. |
|
201 | $ cd .. | |
202 |
|
202 | |||
203 | Changes during an interruption - abort (again): |
|
203 | Changes during an interruption - abort (again): | |
204 |
|
204 | |||
205 | $ hg clone -q -u . a a3 |
|
205 | $ hg clone -q -u . a a3 | |
206 | $ cd a3 |
|
206 | $ cd a3 | |
207 |
|
207 | |||
208 | $ hg tglogp |
|
208 | $ hg tglogp | |
209 | @ 4:draft 'E' |
|
209 | @ 4:draft 'E' | |
210 | | |
|
210 | | | |
211 | o 3:draft 'D' |
|
211 | o 3:draft 'D' | |
212 | | |
|
212 | | | |
213 | | o 2:draft 'C' |
|
213 | | o 2:draft 'C' | |
214 | | | |
|
214 | | | | |
215 | | o 1:draft 'B' |
|
215 | | o 1:draft 'B' | |
216 | |/ |
|
216 | |/ | |
217 | o 0:draft 'A' |
|
217 | o 0:draft 'A' | |
218 |
|
218 | |||
219 | Rebasing B onto E: |
|
219 | Rebasing B onto E: | |
220 |
|
220 | |||
221 | $ hg rebase -s 1 -d 4 |
|
221 | $ hg rebase -s 1 -d 4 | |
222 | merging A |
|
222 | merging A | |
223 | warning: conflicts during merge. |
|
223 | warning: conflicts during merge. | |
224 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') |
|
224 | merging A incomplete! (edit conflicts, then use 'hg resolve --mark') | |
225 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
225 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
226 | [1] |
|
226 | [1] | |
227 |
|
227 | |||
228 | Change phase on B and B' |
|
228 | Change phase on B and B' | |
229 |
|
229 | |||
230 | $ hg up -q -C 5 --config 'extensions.rebase=!' |
|
230 | $ hg up -q -C 5 --config 'extensions.rebase=!' | |
231 | $ hg phase --public 1 |
|
231 | $ hg phase --public 1 | |
232 | $ hg phase --public 5 |
|
232 | $ hg phase --public 5 | |
233 | $ hg phase --secret -f 2 |
|
233 | $ hg phase --secret -f 2 | |
234 |
|
234 | |||
235 | $ hg tglogp |
|
235 | $ hg tglogp | |
236 | @ 5:public 'B' |
|
236 | @ 5:public 'B' | |
237 | | |
|
237 | | | |
238 | o 4:public 'E' |
|
238 | o 4:public 'E' | |
239 | | |
|
239 | | | |
240 | o 3:public 'D' |
|
240 | o 3:public 'D' | |
241 | | |
|
241 | | | |
242 | | o 2:secret 'C' |
|
242 | | o 2:secret 'C' | |
243 | | | |
|
243 | | | | |
244 | | o 1:public 'B' |
|
244 | | o 1:public 'B' | |
245 | |/ |
|
245 | |/ | |
246 | o 0:public 'A' |
|
246 | o 0:public 'A' | |
247 |
|
247 | |||
248 | Abort the rebasing: |
|
248 | Abort the rebasing: | |
249 |
|
249 | |||
250 | $ hg rebase --abort |
|
250 | $ hg rebase --abort | |
251 | warning: can't clean up immutable changesets 45396c49d53b |
|
251 | warning: can't clean up immutable changesets 45396c49d53b | |
252 | rebase aborted |
|
252 | rebase aborted | |
253 |
|
253 | |||
254 | $ hg tglogp |
|
254 | $ hg tglogp | |
255 | @ 5:public 'B' |
|
255 | @ 5:public 'B' | |
256 | | |
|
256 | | | |
257 | o 4:public 'E' |
|
257 | o 4:public 'E' | |
258 | | |
|
258 | | | |
259 | o 3:public 'D' |
|
259 | o 3:public 'D' | |
260 | | |
|
260 | | | |
261 | | o 2:secret 'C' |
|
261 | | o 2:secret 'C' | |
262 | | | |
|
262 | | | | |
263 | | o 1:public 'B' |
|
263 | | o 1:public 'B' | |
264 | |/ |
|
264 | |/ | |
265 | o 0:public 'A' |
|
265 | o 0:public 'A' | |
266 |
|
266 | |||
267 | $ cd .. |
|
267 | $ cd .. |
@@ -1,243 +1,243 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 | $ hg init a |
|
13 | $ hg init a | |
14 | $ cd a |
|
14 | $ cd a | |
15 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
15 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
16 | adding changesets |
|
16 | adding changesets | |
17 | adding manifests |
|
17 | adding manifests | |
18 | adding file changes |
|
18 | adding file changes | |
19 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
19 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
20 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
20 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
21 | $ hg up tip |
|
21 | $ hg up tip | |
22 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
22 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
23 | $ cd .. |
|
23 | $ cd .. | |
24 |
|
24 | |||
25 | $ hg clone -q -u . a a1 |
|
25 | $ hg clone -q -u . a a1 | |
26 |
|
26 | |||
27 | $ cd a1 |
|
27 | $ cd a1 | |
28 |
|
28 | |||
29 | $ hg update 3 |
|
29 | $ hg update 3 | |
30 | 3 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
30 | 3 files updated, 0 files merged, 2 files removed, 0 files unresolved | |
31 | $ hg branch dev-one |
|
31 | $ hg branch dev-one | |
32 | marked working directory as branch dev-one |
|
32 | marked working directory as branch dev-one | |
33 | (branches are permanent and global, did you want a bookmark?) |
|
33 | (branches are permanent and global, did you want a bookmark?) | |
34 | $ hg ci -m 'dev-one named branch' |
|
34 | $ hg ci -m 'dev-one named branch' | |
35 |
|
35 | |||
36 | $ hg update 7 |
|
36 | $ hg update 7 | |
37 | 2 files updated, 0 files merged, 3 files removed, 0 files unresolved |
|
37 | 2 files updated, 0 files merged, 3 files removed, 0 files unresolved | |
38 | $ hg branch dev-two |
|
38 | $ hg branch dev-two | |
39 | marked working directory as branch dev-two |
|
39 | marked working directory as branch dev-two | |
40 | (branches are permanent and global, did you want a bookmark?) |
|
40 | (branches are permanent and global, did you want a bookmark?) | |
41 |
|
41 | |||
42 | $ echo x > x |
|
42 | $ echo x > x | |
43 |
|
43 | |||
44 | $ hg add x |
|
44 | $ hg add x | |
45 |
|
45 | |||
46 | $ hg ci -m 'dev-two named branch' |
|
46 | $ hg ci -m 'dev-two named branch' | |
47 |
|
47 | |||
48 | $ hg tglog |
|
48 | $ hg tglog | |
49 | @ 9: 'dev-two named branch' dev-two |
|
49 | @ 9: 'dev-two named branch' dev-two | |
50 | | |
|
50 | | | |
51 | | o 8: 'dev-one named branch' dev-one |
|
51 | | o 8: 'dev-one named branch' dev-one | |
52 | | | |
|
52 | | | | |
53 | o | 7: 'H' |
|
53 | o | 7: 'H' | |
54 | | | |
|
54 | | | | |
55 | +---o 6: 'G' |
|
55 | +---o 6: 'G' | |
56 | | | | |
|
56 | | | | | |
57 | o | | 5: 'F' |
|
57 | o | | 5: 'F' | |
58 | | | | |
|
58 | | | | | |
59 | +---o 4: 'E' |
|
59 | +---o 4: 'E' | |
60 | | | |
|
60 | | | | |
61 | | o 3: 'D' |
|
61 | | o 3: 'D' | |
62 | | | |
|
62 | | | | |
63 | | o 2: 'C' |
|
63 | | o 2: 'C' | |
64 | | | |
|
64 | | | | |
65 | | o 1: 'B' |
|
65 | | o 1: 'B' | |
66 | |/ |
|
66 | |/ | |
67 | o 0: 'A' |
|
67 | o 0: 'A' | |
68 |
|
68 | |||
69 |
|
69 | |||
70 | Branch name containing a dash (issue3181) |
|
70 | Branch name containing a dash (issue3181) | |
71 |
|
71 | |||
72 | $ hg rebase -b dev-two -d dev-one --keepbranches |
|
72 | $ hg rebase -b dev-two -d dev-one --keepbranches | |
73 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
73 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
74 |
|
74 | |||
75 | $ hg tglog |
|
75 | $ hg tglog | |
76 | @ 9: 'dev-two named branch' dev-two |
|
76 | @ 9: 'dev-two named branch' dev-two | |
77 | | |
|
77 | | | |
78 | o 8: 'H' |
|
78 | o 8: 'H' | |
79 | | |
|
79 | | | |
80 | | o 7: 'G' |
|
80 | | o 7: 'G' | |
81 | |/| |
|
81 | |/| | |
82 | o | 6: 'F' |
|
82 | o | 6: 'F' | |
83 | | | |
|
83 | | | | |
84 | o | 5: 'dev-one named branch' dev-one |
|
84 | o | 5: 'dev-one named branch' dev-one | |
85 | | | |
|
85 | | | | |
86 | | o 4: 'E' |
|
86 | | o 4: 'E' | |
87 | | | |
|
87 | | | | |
88 | o | 3: 'D' |
|
88 | o | 3: 'D' | |
89 | | | |
|
89 | | | | |
90 | o | 2: 'C' |
|
90 | o | 2: 'C' | |
91 | | | |
|
91 | | | | |
92 | o | 1: 'B' |
|
92 | o | 1: 'B' | |
93 | |/ |
|
93 | |/ | |
94 | o 0: 'A' |
|
94 | o 0: 'A' | |
95 |
|
95 | |||
96 | $ hg rebase -s dev-one -d 0 --keepbranches |
|
96 | $ hg rebase -s dev-one -d 0 --keepbranches | |
97 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
97 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
98 |
|
98 | |||
99 | $ hg tglog |
|
99 | $ hg tglog | |
100 | @ 8: 'dev-two named branch' dev-two |
|
100 | @ 8: 'dev-two named branch' dev-two | |
101 | | |
|
101 | | | |
102 | o 7: 'H' |
|
102 | o 7: 'H' | |
103 | | |
|
103 | | | |
104 | | o 6: 'G' |
|
104 | | o 6: 'G' | |
105 | |/| |
|
105 | |/| | |
106 | o | 5: 'F' |
|
106 | o | 5: 'F' | |
107 | | | |
|
107 | | | | |
108 | | o 4: 'E' |
|
108 | | o 4: 'E' | |
109 | |/ |
|
109 | |/ | |
110 | | o 3: 'D' |
|
110 | | o 3: 'D' | |
111 | | | |
|
111 | | | | |
112 | | o 2: 'C' |
|
112 | | o 2: 'C' | |
113 | | | |
|
113 | | | | |
114 | | o 1: 'B' |
|
114 | | o 1: 'B' | |
115 | |/ |
|
115 | |/ | |
116 | o 0: 'A' |
|
116 | o 0: 'A' | |
117 |
|
117 | |||
118 | $ hg update 3 |
|
118 | $ hg update 3 | |
119 | 3 files updated, 0 files merged, 3 files removed, 0 files unresolved |
|
119 | 3 files updated, 0 files merged, 3 files removed, 0 files unresolved | |
120 | $ hg branch dev-one |
|
120 | $ hg branch dev-one | |
121 | marked working directory as branch dev-one |
|
121 | marked working directory as branch dev-one | |
122 | (branches are permanent and global, did you want a bookmark?) |
|
122 | (branches are permanent and global, did you want a bookmark?) | |
123 | $ hg ci -m 'dev-one named branch' |
|
123 | $ hg ci -m 'dev-one named branch' | |
124 |
|
124 | |||
125 | $ hg tglog |
|
125 | $ hg tglog | |
126 | @ 9: 'dev-one named branch' dev-one |
|
126 | @ 9: 'dev-one named branch' dev-one | |
127 | | |
|
127 | | | |
128 | | o 8: 'dev-two named branch' dev-two |
|
128 | | o 8: 'dev-two named branch' dev-two | |
129 | | | |
|
129 | | | | |
130 | | o 7: 'H' |
|
130 | | o 7: 'H' | |
131 | | | |
|
131 | | | | |
132 | | | o 6: 'G' |
|
132 | | | o 6: 'G' | |
133 | | |/| |
|
133 | | |/| | |
134 | | o | 5: 'F' |
|
134 | | o | 5: 'F' | |
135 | | | | |
|
135 | | | | | |
136 | | | o 4: 'E' |
|
136 | | | o 4: 'E' | |
137 | | |/ |
|
137 | | |/ | |
138 | o | 3: 'D' |
|
138 | o | 3: 'D' | |
139 | | | |
|
139 | | | | |
140 | o | 2: 'C' |
|
140 | o | 2: 'C' | |
141 | | | |
|
141 | | | | |
142 | o | 1: 'B' |
|
142 | o | 1: 'B' | |
143 | |/ |
|
143 | |/ | |
144 | o 0: 'A' |
|
144 | o 0: 'A' | |
145 |
|
145 | |||
146 | $ hg rebase -b 'max(branch("dev-two"))' -d dev-one --keepbranches |
|
146 | $ hg rebase -b 'max(branch("dev-two"))' -d dev-one --keepbranches | |
147 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
147 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
148 |
|
148 | |||
149 | $ hg tglog |
|
149 | $ hg tglog | |
150 |
|
|
150 | o 9: 'dev-two named branch' dev-two | |
151 | | |
|
151 | | | |
152 | o 8: 'H' |
|
152 | o 8: 'H' | |
153 | | |
|
153 | | | |
154 | | o 7: 'G' |
|
154 | | o 7: 'G' | |
155 | |/| |
|
155 | |/| | |
156 | o | 6: 'F' |
|
156 | o | 6: 'F' | |
157 | | | |
|
157 | | | | |
158 |
|
|
158 | @ | 5: 'dev-one named branch' dev-one | |
159 | | | |
|
159 | | | | |
160 | | o 4: 'E' |
|
160 | | o 4: 'E' | |
161 | | | |
|
161 | | | | |
162 | o | 3: 'D' |
|
162 | o | 3: 'D' | |
163 | | | |
|
163 | | | | |
164 | o | 2: 'C' |
|
164 | o | 2: 'C' | |
165 | | | |
|
165 | | | | |
166 | o | 1: 'B' |
|
166 | o | 1: 'B' | |
167 | |/ |
|
167 | |/ | |
168 | o 0: 'A' |
|
168 | o 0: 'A' | |
169 |
|
169 | |||
170 | $ hg rebase -s 'max(branch("dev-one"))' -d 0 --keepbranches |
|
170 | $ hg rebase -s 'max(branch("dev-one"))' -d 0 --keepbranches | |
171 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
171 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
172 |
|
172 | |||
173 | $ hg tglog |
|
173 | $ hg tglog | |
174 |
|
|
174 | o 8: 'dev-two named branch' dev-two | |
175 | | |
|
175 | | | |
176 | o 7: 'H' |
|
176 | o 7: 'H' | |
177 | | |
|
177 | | | |
178 | | o 6: 'G' |
|
178 | | o 6: 'G' | |
179 | |/| |
|
179 | |/| | |
180 | o | 5: 'F' |
|
180 | o | 5: 'F' | |
181 | | | |
|
181 | | | | |
182 | | o 4: 'E' |
|
182 | | o 4: 'E' | |
183 | |/ |
|
183 | |/ | |
184 | | o 3: 'D' |
|
184 | | o 3: 'D' | |
185 | | | |
|
185 | | | | |
186 | | o 2: 'C' |
|
186 | | o 2: 'C' | |
187 | | | |
|
187 | | | | |
188 | | o 1: 'B' |
|
188 | | o 1: 'B' | |
189 | |/ |
|
189 | |/ | |
190 |
|
|
190 | @ 0: 'A' | |
191 |
|
191 | |||
192 |
|
192 | |||
193 | Rebasing descendant onto ancestor across different named branches |
|
193 | Rebasing descendant onto ancestor across different named branches | |
194 |
|
194 | |||
195 | $ hg rebase -s 1 -d 8 --keepbranches |
|
195 | $ hg rebase -s 1 -d 8 --keepbranches | |
196 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
196 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
197 |
|
197 | |||
198 | $ hg tglog |
|
198 | $ hg tglog | |
199 |
|
|
199 | o 8: 'D' | |
200 | | |
|
200 | | | |
201 | o 7: 'C' |
|
201 | o 7: 'C' | |
202 | | |
|
202 | | | |
203 | o 6: 'B' |
|
203 | o 6: 'B' | |
204 | | |
|
204 | | | |
205 | o 5: 'dev-two named branch' dev-two |
|
205 | o 5: 'dev-two named branch' dev-two | |
206 | | |
|
206 | | | |
207 | o 4: 'H' |
|
207 | o 4: 'H' | |
208 | | |
|
208 | | | |
209 | | o 3: 'G' |
|
209 | | o 3: 'G' | |
210 | |/| |
|
210 | |/| | |
211 | o | 2: 'F' |
|
211 | o | 2: 'F' | |
212 | | | |
|
212 | | | | |
213 | | o 1: 'E' |
|
213 | | o 1: 'E' | |
214 | |/ |
|
214 | |/ | |
215 |
|
|
215 | @ 0: 'A' | |
216 |
|
216 | |||
217 | $ hg rebase -s 4 -d 5 |
|
217 | $ hg rebase -s 4 -d 5 | |
218 | abort: source is ancestor of destination |
|
218 | abort: source is ancestor of destination | |
219 | [255] |
|
219 | [255] | |
220 |
|
220 | |||
221 | $ hg rebase -s 5 -d 4 |
|
221 | $ hg rebase -s 5 -d 4 | |
222 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
222 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
223 |
|
223 | |||
224 | $ hg tglog |
|
224 | $ hg tglog | |
225 |
|
|
225 | o 8: 'D' | |
226 | | |
|
226 | | | |
227 | o 7: 'C' |
|
227 | o 7: 'C' | |
228 | | |
|
228 | | | |
229 | o 6: 'B' |
|
229 | o 6: 'B' | |
230 | | |
|
230 | | | |
231 | o 5: 'dev-two named branch' |
|
231 | o 5: 'dev-two named branch' | |
232 | | |
|
232 | | | |
233 | o 4: 'H' |
|
233 | o 4: 'H' | |
234 | | |
|
234 | | | |
235 | | o 3: 'G' |
|
235 | | o 3: 'G' | |
236 | |/| |
|
236 | |/| | |
237 | o | 2: 'F' |
|
237 | o | 2: 'F' | |
238 | | | |
|
238 | | | | |
239 | | o 1: 'E' |
|
239 | | o 1: 'E' | |
240 | |/ |
|
240 | |/ | |
241 |
|
|
241 | @ 0: 'A' | |
242 |
|
242 | |||
243 | $ cd .. |
|
243 | $ cd .. |
@@ -1,56 +1,56 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [alias] |
|
6 | > [alias] | |
7 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
7 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
8 | > EOF |
|
8 | > EOF | |
9 |
|
9 | |||
10 | $ hg init repo |
|
10 | $ hg init repo | |
11 | $ cd repo |
|
11 | $ cd repo | |
12 |
|
12 | |||
13 | $ echo A > a |
|
13 | $ echo A > a | |
14 | $ echo >> a |
|
14 | $ echo >> a | |
15 | $ hg ci -Am A |
|
15 | $ hg ci -Am A | |
16 | adding a |
|
16 | adding a | |
17 |
|
17 | |||
18 | $ echo B > a |
|
18 | $ echo B > a | |
19 | $ echo >> a |
|
19 | $ echo >> a | |
20 | $ hg ci -m B |
|
20 | $ hg ci -m B | |
21 |
|
21 | |||
22 | $ echo C > a |
|
22 | $ echo C > a | |
23 | $ echo >> a |
|
23 | $ echo >> a | |
24 | $ hg ci -m C |
|
24 | $ hg ci -m C | |
25 |
|
25 | |||
26 | $ hg up -q -C 0 |
|
26 | $ hg up -q -C 0 | |
27 |
|
27 | |||
28 | $ echo D >> a |
|
28 | $ echo D >> a | |
29 | $ hg ci -Am AD |
|
29 | $ hg ci -Am AD | |
30 | created new head |
|
30 | created new head | |
31 |
|
31 | |||
32 | $ hg tglog |
|
32 | $ hg tglog | |
33 | @ 3: 'AD' |
|
33 | @ 3: 'AD' | |
34 | | |
|
34 | | | |
35 | | o 2: 'C' |
|
35 | | o 2: 'C' | |
36 | | | |
|
36 | | | | |
37 | | o 1: 'B' |
|
37 | | o 1: 'B' | |
38 | |/ |
|
38 | |/ | |
39 | o 0: 'A' |
|
39 | o 0: 'A' | |
40 |
|
40 | |||
41 | $ hg rebase -s 1 -d 3 |
|
41 | $ hg rebase -s 1 -d 3 | |
42 | merging a |
|
42 | merging a | |
43 | merging a |
|
43 | merging a | |
44 | saved backup bundle to $TESTTMP/repo/.hg/strip-backup/*-backup.hg (glob) |
|
44 | saved backup bundle to $TESTTMP/repo/.hg/strip-backup/*-backup.hg (glob) | |
45 |
|
45 | |||
46 | $ hg tglog |
|
46 | $ hg tglog | |
47 |
|
|
47 | o 3: 'C' | |
48 | | |
|
48 | | | |
49 | o 2: 'B' |
|
49 | o 2: 'B' | |
50 | | |
|
50 | | | |
51 |
|
|
51 | @ 1: 'AD' | |
52 | | |
|
52 | | | |
53 | o 0: 'A' |
|
53 | o 0: 'A' | |
54 |
|
54 | |||
55 |
|
55 | |||
56 | $ cd .. |
|
56 | $ cd .. |
@@ -1,473 +1,473 b'' | |||||
1 | ========================== |
|
1 | ========================== | |
2 | Test rebase with obsolete |
|
2 | Test rebase with obsolete | |
3 | ========================== |
|
3 | ========================== | |
4 |
|
4 | |||
5 | Enable obsolete |
|
5 | Enable obsolete | |
6 |
|
6 | |||
7 | $ cat > ${TESTTMP}/obs.py << EOF |
|
7 | $ cat > ${TESTTMP}/obs.py << EOF | |
8 | > import mercurial.obsolete |
|
8 | > import mercurial.obsolete | |
9 | > mercurial.obsolete._enabled = True |
|
9 | > mercurial.obsolete._enabled = True | |
10 | > EOF |
|
10 | > EOF | |
11 | $ cat >> $HGRCPATH << EOF |
|
11 | $ cat >> $HGRCPATH << EOF | |
12 | > [ui] |
|
12 | > [ui] | |
13 | > logtemplate= {rev}:{node|short} {desc|firstline} |
|
13 | > logtemplate= {rev}:{node|short} {desc|firstline} | |
14 | > [phases] |
|
14 | > [phases] | |
15 | > publish=False |
|
15 | > publish=False | |
16 | > [extensions]' |
|
16 | > [extensions]' | |
17 | > rebase= |
|
17 | > rebase= | |
18 | > |
|
18 | > | |
19 | > obs=${TESTTMP}/obs.py |
|
19 | > obs=${TESTTMP}/obs.py | |
20 | > EOF |
|
20 | > EOF | |
21 |
|
21 | |||
22 | Setup rebase canonical repo |
|
22 | Setup rebase canonical repo | |
23 |
|
23 | |||
24 | $ hg init base |
|
24 | $ hg init base | |
25 | $ cd base |
|
25 | $ cd base | |
26 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
26 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
27 | adding changesets |
|
27 | adding changesets | |
28 | adding manifests |
|
28 | adding manifests | |
29 | adding file changes |
|
29 | adding file changes | |
30 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
30 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
31 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
31 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
32 | $ hg up tip |
|
32 | $ hg up tip | |
33 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
33 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
34 | $ hg log -G |
|
34 | $ hg log -G | |
35 | @ 7:02de42196ebe H |
|
35 | @ 7:02de42196ebe H | |
36 | | |
|
36 | | | |
37 | | o 6:eea13746799a G |
|
37 | | o 6:eea13746799a G | |
38 | |/| |
|
38 | |/| | |
39 | o | 5:24b6387c8c8c F |
|
39 | o | 5:24b6387c8c8c F | |
40 | | | |
|
40 | | | | |
41 | | o 4:9520eea781bc E |
|
41 | | o 4:9520eea781bc E | |
42 | |/ |
|
42 | |/ | |
43 | | o 3:32af7686d403 D |
|
43 | | o 3:32af7686d403 D | |
44 | | | |
|
44 | | | | |
45 | | o 2:5fddd98957c8 C |
|
45 | | o 2:5fddd98957c8 C | |
46 | | | |
|
46 | | | | |
47 | | o 1:42ccdea3bb16 B |
|
47 | | o 1:42ccdea3bb16 B | |
48 | |/ |
|
48 | |/ | |
49 | o 0:cd010b8cd998 A |
|
49 | o 0:cd010b8cd998 A | |
50 |
|
50 | |||
51 | $ cd .. |
|
51 | $ cd .. | |
52 |
|
52 | |||
53 | simple rebase |
|
53 | simple rebase | |
54 | --------------------------------- |
|
54 | --------------------------------- | |
55 |
|
55 | |||
56 | $ hg clone base simple |
|
56 | $ hg clone base simple | |
57 | updating to branch default |
|
57 | updating to branch default | |
58 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
58 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
59 | $ cd simple |
|
59 | $ cd simple | |
60 | $ hg up 32af7686d403 |
|
60 | $ hg up 32af7686d403 | |
61 | 3 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
61 | 3 files updated, 0 files merged, 2 files removed, 0 files unresolved | |
62 | $ hg rebase -d eea13746799a |
|
62 | $ hg rebase -d eea13746799a | |
63 | $ hg log -G |
|
63 | $ hg log -G | |
64 | @ 10:8eeb3c33ad33 D |
|
64 | @ 10:8eeb3c33ad33 D | |
65 | | |
|
65 | | | |
66 | o 9:2327fea05063 C |
|
66 | o 9:2327fea05063 C | |
67 | | |
|
67 | | | |
68 | o 8:e4e5be0395b2 B |
|
68 | o 8:e4e5be0395b2 B | |
69 | | |
|
69 | | | |
70 | | o 7:02de42196ebe H |
|
70 | | o 7:02de42196ebe H | |
71 | | | |
|
71 | | | | |
72 | o | 6:eea13746799a G |
|
72 | o | 6:eea13746799a G | |
73 | |\| |
|
73 | |\| | |
74 | | o 5:24b6387c8c8c F |
|
74 | | o 5:24b6387c8c8c F | |
75 | | | |
|
75 | | | | |
76 | o | 4:9520eea781bc E |
|
76 | o | 4:9520eea781bc E | |
77 | |/ |
|
77 | |/ | |
78 | o 0:cd010b8cd998 A |
|
78 | o 0:cd010b8cd998 A | |
79 |
|
79 | |||
80 | $ hg log --hidden -G |
|
80 | $ hg log --hidden -G | |
81 | @ 10:8eeb3c33ad33 D |
|
81 | @ 10:8eeb3c33ad33 D | |
82 | | |
|
82 | | | |
83 | o 9:2327fea05063 C |
|
83 | o 9:2327fea05063 C | |
84 | | |
|
84 | | | |
85 | o 8:e4e5be0395b2 B |
|
85 | o 8:e4e5be0395b2 B | |
86 | | |
|
86 | | | |
87 | | o 7:02de42196ebe H |
|
87 | | o 7:02de42196ebe H | |
88 | | | |
|
88 | | | | |
89 | o | 6:eea13746799a G |
|
89 | o | 6:eea13746799a G | |
90 | |\| |
|
90 | |\| | |
91 | | o 5:24b6387c8c8c F |
|
91 | | o 5:24b6387c8c8c F | |
92 | | | |
|
92 | | | | |
93 | o | 4:9520eea781bc E |
|
93 | o | 4:9520eea781bc E | |
94 | |/ |
|
94 | |/ | |
95 | | x 3:32af7686d403 D |
|
95 | | x 3:32af7686d403 D | |
96 | | | |
|
96 | | | | |
97 | | x 2:5fddd98957c8 C |
|
97 | | x 2:5fddd98957c8 C | |
98 | | | |
|
98 | | | | |
99 | | x 1:42ccdea3bb16 B |
|
99 | | x 1:42ccdea3bb16 B | |
100 | |/ |
|
100 | |/ | |
101 | o 0:cd010b8cd998 A |
|
101 | o 0:cd010b8cd998 A | |
102 |
|
102 | |||
103 | $ hg debugobsolete |
|
103 | $ hg debugobsolete | |
104 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 e4e5be0395b2cbd471ed22a26b1b6a1a0658a794 0 {'date': '*', 'user': 'test'} (glob) |
|
104 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 e4e5be0395b2cbd471ed22a26b1b6a1a0658a794 0 {'date': '*', 'user': 'test'} (glob) | |
105 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 2327fea05063f39961b14cb69435a9898dc9a245 0 {'date': '*', 'user': 'test'} (glob) |
|
105 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 2327fea05063f39961b14cb69435a9898dc9a245 0 {'date': '*', 'user': 'test'} (glob) | |
106 | 32af7686d403cf45b5d95f2d70cebea587ac806a 8eeb3c33ad33d452c89e5dcf611c347f978fb42b 0 {'date': '*', 'user': 'test'} (glob) |
|
106 | 32af7686d403cf45b5d95f2d70cebea587ac806a 8eeb3c33ad33d452c89e5dcf611c347f978fb42b 0 {'date': '*', 'user': 'test'} (glob) | |
107 |
|
107 | |||
108 |
|
108 | |||
109 | $ cd .. |
|
109 | $ cd .. | |
110 |
|
110 | |||
111 | empty changeset |
|
111 | empty changeset | |
112 | --------------------------------- |
|
112 | --------------------------------- | |
113 |
|
113 | |||
114 | $ hg clone base empty |
|
114 | $ hg clone base empty | |
115 | updating to branch default |
|
115 | updating to branch default | |
116 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
116 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
117 | $ cd empty |
|
117 | $ cd empty | |
118 | $ hg up eea13746799a |
|
118 | $ hg up eea13746799a | |
119 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
119 | 1 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
120 |
|
120 | |||
121 | We make a copy of both the first changeset in the rebased and some other in the |
|
121 | We make a copy of both the first changeset in the rebased and some other in the | |
122 | set. |
|
122 | set. | |
123 |
|
123 | |||
124 | $ hg graft 42ccdea3bb16 32af7686d403 |
|
124 | $ hg graft 42ccdea3bb16 32af7686d403 | |
125 | grafting revision 1 |
|
125 | grafting revision 1 | |
126 | grafting revision 3 |
|
126 | grafting revision 3 | |
127 | $ hg rebase -s 42ccdea3bb16 -d . |
|
127 | $ hg rebase -s 42ccdea3bb16 -d . | |
128 | $ hg log -G |
|
128 | $ hg log -G | |
129 |
|
|
129 | o 10:5ae4c968c6ac C | |
130 | | |
|
130 | | | |
131 |
|
|
131 | @ 9:08483444fef9 D | |
132 | | |
|
132 | | | |
133 | o 8:8877864f1edb B |
|
133 | o 8:8877864f1edb B | |
134 | | |
|
134 | | | |
135 | | o 7:02de42196ebe H |
|
135 | | o 7:02de42196ebe H | |
136 | | | |
|
136 | | | | |
137 | o | 6:eea13746799a G |
|
137 | o | 6:eea13746799a G | |
138 | |\| |
|
138 | |\| | |
139 | | o 5:24b6387c8c8c F |
|
139 | | o 5:24b6387c8c8c F | |
140 | | | |
|
140 | | | | |
141 | o | 4:9520eea781bc E |
|
141 | o | 4:9520eea781bc E | |
142 | |/ |
|
142 | |/ | |
143 | o 0:cd010b8cd998 A |
|
143 | o 0:cd010b8cd998 A | |
144 |
|
144 | |||
145 | $ hg log --hidden -G |
|
145 | $ hg log --hidden -G | |
146 |
|
|
146 | o 10:5ae4c968c6ac C | |
147 | | |
|
147 | | | |
148 |
|
|
148 | @ 9:08483444fef9 D | |
149 | | |
|
149 | | | |
150 | o 8:8877864f1edb B |
|
150 | o 8:8877864f1edb B | |
151 | | |
|
151 | | | |
152 | | o 7:02de42196ebe H |
|
152 | | o 7:02de42196ebe H | |
153 | | | |
|
153 | | | | |
154 | o | 6:eea13746799a G |
|
154 | o | 6:eea13746799a G | |
155 | |\| |
|
155 | |\| | |
156 | | o 5:24b6387c8c8c F |
|
156 | | o 5:24b6387c8c8c F | |
157 | | | |
|
157 | | | | |
158 | o | 4:9520eea781bc E |
|
158 | o | 4:9520eea781bc E | |
159 | |/ |
|
159 | |/ | |
160 | | x 3:32af7686d403 D |
|
160 | | x 3:32af7686d403 D | |
161 | | | |
|
161 | | | | |
162 | | x 2:5fddd98957c8 C |
|
162 | | x 2:5fddd98957c8 C | |
163 | | | |
|
163 | | | | |
164 | | x 1:42ccdea3bb16 B |
|
164 | | x 1:42ccdea3bb16 B | |
165 | |/ |
|
165 | |/ | |
166 | o 0:cd010b8cd998 A |
|
166 | o 0:cd010b8cd998 A | |
167 |
|
167 | |||
168 | $ hg debugobsolete |
|
168 | $ hg debugobsolete | |
169 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '*', 'user': 'test'} (glob) |
|
169 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '*', 'user': 'test'} (glob) | |
170 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '*', 'user': 'test'} (glob) |
|
170 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '*', 'user': 'test'} (glob) | |
171 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '*', 'user': 'test'} (glob) |
|
171 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '*', 'user': 'test'} (glob) | |
172 |
|
172 | |||
173 |
|
173 | |||
174 | More complex case were part of the rebase set were already rebased |
|
174 | More complex case were part of the rebase set were already rebased | |
175 |
|
175 | |||
176 | $ hg rebase --rev 'desc(D)' --dest 'desc(H)' |
|
176 | $ hg rebase --rev 'desc(D)' --dest 'desc(H)' | |
177 | $ hg debugobsolete |
|
177 | $ hg debugobsolete | |
178 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '*', 'user': 'test'} (glob) |
|
178 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '*', 'user': 'test'} (glob) | |
179 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '*', 'user': 'test'} (glob) |
|
179 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '*', 'user': 'test'} (glob) | |
180 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '*', 'user': 'test'} (glob) |
|
180 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '*', 'user': 'test'} (glob) | |
181 | 08483444fef91d6224f6655ee586a65d263ad34c 4596109a6a4328c398bde3a4a3b6737cfade3003 0 {'date': '* *', 'user': 'test'} (glob) |
|
181 | 08483444fef91d6224f6655ee586a65d263ad34c 4596109a6a4328c398bde3a4a3b6737cfade3003 0 {'date': '* *', 'user': 'test'} (glob) | |
182 | $ hg log -G |
|
182 | $ hg log -G | |
183 | @ 11:4596109a6a43 D |
|
183 | @ 11:4596109a6a43 D | |
184 | | |
|
184 | | | |
185 | | o 10:5ae4c968c6ac C |
|
185 | | o 10:5ae4c968c6ac C | |
186 | | | |
|
186 | | | | |
187 | | x 9:08483444fef9 D |
|
187 | | x 9:08483444fef9 D | |
188 | | | |
|
188 | | | | |
189 | | o 8:8877864f1edb B |
|
189 | | o 8:8877864f1edb B | |
190 | | | |
|
190 | | | | |
191 | o | 7:02de42196ebe H |
|
191 | o | 7:02de42196ebe H | |
192 | | | |
|
192 | | | | |
193 | | o 6:eea13746799a G |
|
193 | | o 6:eea13746799a G | |
194 | |/| |
|
194 | |/| | |
195 | o | 5:24b6387c8c8c F |
|
195 | o | 5:24b6387c8c8c F | |
196 | | | |
|
196 | | | | |
197 | | o 4:9520eea781bc E |
|
197 | | o 4:9520eea781bc E | |
198 | |/ |
|
198 | |/ | |
199 | o 0:cd010b8cd998 A |
|
199 | o 0:cd010b8cd998 A | |
200 |
|
200 | |||
201 | $ hg rebase --source 'desc(B)' --dest 'tip' |
|
201 | $ hg rebase --source 'desc(B)' --dest 'tip' | |
202 | $ hg debugobsolete |
|
202 | $ hg debugobsolete | |
203 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '* *', 'user': 'test'} (glob) |
|
203 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 0 {'date': '* *', 'user': 'test'} (glob) | |
204 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '* *', 'user': 'test'} (glob) |
|
204 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 5ae4c968c6aca831df823664e706c9d4aa34473d 0 {'date': '* *', 'user': 'test'} (glob) | |
205 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '* *', 'user': 'test'} (glob) |
|
205 | 32af7686d403cf45b5d95f2d70cebea587ac806a 0 {'date': '* *', 'user': 'test'} (glob) | |
206 | 08483444fef91d6224f6655ee586a65d263ad34c 4596109a6a4328c398bde3a4a3b6737cfade3003 0 {'date': '* *', 'user': 'test'} (glob) |
|
206 | 08483444fef91d6224f6655ee586a65d263ad34c 4596109a6a4328c398bde3a4a3b6737cfade3003 0 {'date': '* *', 'user': 'test'} (glob) | |
207 | 8877864f1edb05d0e07dc4ba77b67a80a7b86672 462a34d07e599b87ea08676a449373fe4e2e1347 0 {'date': '* *', 'user': 'test'} (glob) |
|
207 | 8877864f1edb05d0e07dc4ba77b67a80a7b86672 462a34d07e599b87ea08676a449373fe4e2e1347 0 {'date': '* *', 'user': 'test'} (glob) | |
208 | 08483444fef91d6224f6655ee586a65d263ad34c 0 {'date': '* *', 'user': 'test'} (glob) |
|
208 | 08483444fef91d6224f6655ee586a65d263ad34c 0 {'date': '* *', 'user': 'test'} (glob) | |
209 | 5ae4c968c6aca831df823664e706c9d4aa34473d 98f6af4ee9539e14da4465128f894c274900b6e5 0 {'date': '* *', 'user': 'test'} (glob) |
|
209 | 5ae4c968c6aca831df823664e706c9d4aa34473d 98f6af4ee9539e14da4465128f894c274900b6e5 0 {'date': '* *', 'user': 'test'} (glob) | |
210 | $ hg log --rev 'divergent()' |
|
210 | $ hg log --rev 'divergent()' | |
211 | $ hg log -G |
|
211 | $ hg log -G | |
212 |
|
|
212 | o 13:98f6af4ee953 C | |
213 | | |
|
213 | | | |
214 | o 12:462a34d07e59 B |
|
214 | o 12:462a34d07e59 B | |
215 | | |
|
215 | | | |
216 |
|
|
216 | @ 11:4596109a6a43 D | |
217 | | |
|
217 | | | |
218 | o 7:02de42196ebe H |
|
218 | o 7:02de42196ebe H | |
219 | | |
|
219 | | | |
220 | | o 6:eea13746799a G |
|
220 | | o 6:eea13746799a G | |
221 | |/| |
|
221 | |/| | |
222 | o | 5:24b6387c8c8c F |
|
222 | o | 5:24b6387c8c8c F | |
223 | | | |
|
223 | | | | |
224 | | o 4:9520eea781bc E |
|
224 | | o 4:9520eea781bc E | |
225 | |/ |
|
225 | |/ | |
226 | o 0:cd010b8cd998 A |
|
226 | o 0:cd010b8cd998 A | |
227 |
|
227 | |||
228 | $ hg log --style default --debug -r 4596109a6a4328c398bde3a4a3b6737cfade3003 |
|
228 | $ hg log --style default --debug -r 4596109a6a4328c398bde3a4a3b6737cfade3003 | |
229 | changeset: 11:4596109a6a4328c398bde3a4a3b6737cfade3003 |
|
229 | changeset: 11:4596109a6a4328c398bde3a4a3b6737cfade3003 | |
230 | phase: draft |
|
230 | phase: draft | |
231 | parent: 7:02de42196ebee42ef284b6780a87cdc96e8eaab6 |
|
231 | parent: 7:02de42196ebee42ef284b6780a87cdc96e8eaab6 | |
232 | parent: -1:0000000000000000000000000000000000000000 |
|
232 | parent: -1:0000000000000000000000000000000000000000 | |
233 | manifest: 11:a91006e3a02f1edf631f7018e6e5684cf27dd905 |
|
233 | manifest: 11:a91006e3a02f1edf631f7018e6e5684cf27dd905 | |
234 | user: Nicolas Dumazet <nicdumz.commits@gmail.com> |
|
234 | user: Nicolas Dumazet <nicdumz.commits@gmail.com> | |
235 | date: Sat Apr 30 15:24:48 2011 +0200 |
|
235 | date: Sat Apr 30 15:24:48 2011 +0200 | |
236 | files+: D |
|
236 | files+: D | |
237 | extra: branch=default |
|
237 | extra: branch=default | |
238 | extra: rebase_source=08483444fef91d6224f6655ee586a65d263ad34c |
|
238 | extra: rebase_source=08483444fef91d6224f6655ee586a65d263ad34c | |
239 | extra: source=32af7686d403cf45b5d95f2d70cebea587ac806a |
|
239 | extra: source=32af7686d403cf45b5d95f2d70cebea587ac806a | |
240 | description: |
|
240 | description: | |
241 | D |
|
241 | D | |
242 |
|
242 | |||
243 |
|
243 | |||
244 | $ cd .. |
|
244 | $ cd .. | |
245 |
|
245 | |||
246 | collapse rebase |
|
246 | collapse rebase | |
247 | --------------------------------- |
|
247 | --------------------------------- | |
248 |
|
248 | |||
249 | $ hg clone base collapse |
|
249 | $ hg clone base collapse | |
250 | updating to branch default |
|
250 | updating to branch default | |
251 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
251 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
252 | $ cd collapse |
|
252 | $ cd collapse | |
253 | $ hg rebase -s 42ccdea3bb16 -d eea13746799a --collapse |
|
253 | $ hg rebase -s 42ccdea3bb16 -d eea13746799a --collapse | |
254 | $ hg log -G |
|
254 | $ hg log -G | |
255 |
|
|
255 | o 8:4dc2197e807b Collapsed revision | |
256 | | |
|
256 | | | |
257 |
| |
|
257 | | @ 7:02de42196ebe H | |
258 | | | |
|
258 | | | | |
259 | o | 6:eea13746799a G |
|
259 | o | 6:eea13746799a G | |
260 | |\| |
|
260 | |\| | |
261 | | o 5:24b6387c8c8c F |
|
261 | | o 5:24b6387c8c8c F | |
262 | | | |
|
262 | | | | |
263 | o | 4:9520eea781bc E |
|
263 | o | 4:9520eea781bc E | |
264 | |/ |
|
264 | |/ | |
265 | o 0:cd010b8cd998 A |
|
265 | o 0:cd010b8cd998 A | |
266 |
|
266 | |||
267 | $ hg log --hidden -G |
|
267 | $ hg log --hidden -G | |
268 |
|
|
268 | o 8:4dc2197e807b Collapsed revision | |
269 | | |
|
269 | | | |
270 |
| |
|
270 | | @ 7:02de42196ebe H | |
271 | | | |
|
271 | | | | |
272 | o | 6:eea13746799a G |
|
272 | o | 6:eea13746799a G | |
273 | |\| |
|
273 | |\| | |
274 | | o 5:24b6387c8c8c F |
|
274 | | o 5:24b6387c8c8c F | |
275 | | | |
|
275 | | | | |
276 | o | 4:9520eea781bc E |
|
276 | o | 4:9520eea781bc E | |
277 | |/ |
|
277 | |/ | |
278 | | x 3:32af7686d403 D |
|
278 | | x 3:32af7686d403 D | |
279 | | | |
|
279 | | | | |
280 | | x 2:5fddd98957c8 C |
|
280 | | x 2:5fddd98957c8 C | |
281 | | | |
|
281 | | | | |
282 | | x 1:42ccdea3bb16 B |
|
282 | | x 1:42ccdea3bb16 B | |
283 | |/ |
|
283 | |/ | |
284 | o 0:cd010b8cd998 A |
|
284 | o 0:cd010b8cd998 A | |
285 |
|
285 | |||
286 | $ hg id --debug -r tip |
|
286 | $ hg id --debug -r tip | |
287 | 4dc2197e807bae9817f09905b50ab288be2dbbcf tip |
|
287 | 4dc2197e807bae9817f09905b50ab288be2dbbcf tip | |
288 | $ hg debugobsolete |
|
288 | $ hg debugobsolete | |
289 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) |
|
289 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) | |
290 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) |
|
290 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) | |
291 | 32af7686d403cf45b5d95f2d70cebea587ac806a 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) |
|
291 | 32af7686d403cf45b5d95f2d70cebea587ac806a 4dc2197e807bae9817f09905b50ab288be2dbbcf 0 {'date': '*', 'user': 'test'} (glob) | |
292 |
|
292 | |||
293 | $ cd .. |
|
293 | $ cd .. | |
294 |
|
294 | |||
295 | Rebase set has hidden descendants |
|
295 | Rebase set has hidden descendants | |
296 | --------------------------------- |
|
296 | --------------------------------- | |
297 |
|
297 | |||
298 | We rebase a changeset which has a hidden changeset. The hidden changeset must |
|
298 | We rebase a changeset which has a hidden changeset. The hidden changeset must | |
299 | not be rebased. |
|
299 | not be rebased. | |
300 |
|
300 | |||
301 | $ hg clone base hidden |
|
301 | $ hg clone base hidden | |
302 | updating to branch default |
|
302 | updating to branch default | |
303 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
303 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
304 | $ cd hidden |
|
304 | $ cd hidden | |
305 | $ hg rebase -s 5fddd98957c8 -d eea13746799a |
|
305 | $ hg rebase -s 5fddd98957c8 -d eea13746799a | |
306 | $ hg rebase -s 42ccdea3bb16 -d 02de42196ebe |
|
306 | $ hg rebase -s 42ccdea3bb16 -d 02de42196ebe | |
307 | $ hg log -G |
|
307 | $ hg log -G | |
308 |
|
|
308 | o 10:7c6027df6a99 B | |
309 | | |
|
309 | | | |
310 | | o 9:cf44d2f5a9f4 D |
|
310 | | o 9:cf44d2f5a9f4 D | |
311 | | | |
|
311 | | | | |
312 | | o 8:e273c5e7d2d2 C |
|
312 | | o 8:e273c5e7d2d2 C | |
313 | | | |
|
313 | | | | |
314 |
|
|
314 | @ | 7:02de42196ebe H | |
315 | | | |
|
315 | | | | |
316 | | o 6:eea13746799a G |
|
316 | | o 6:eea13746799a G | |
317 | |/| |
|
317 | |/| | |
318 | o | 5:24b6387c8c8c F |
|
318 | o | 5:24b6387c8c8c F | |
319 | | | |
|
319 | | | | |
320 | | o 4:9520eea781bc E |
|
320 | | o 4:9520eea781bc E | |
321 | |/ |
|
321 | |/ | |
322 | o 0:cd010b8cd998 A |
|
322 | o 0:cd010b8cd998 A | |
323 |
|
323 | |||
324 | $ hg log --hidden -G |
|
324 | $ hg log --hidden -G | |
325 |
|
|
325 | o 10:7c6027df6a99 B | |
326 | | |
|
326 | | | |
327 | | o 9:cf44d2f5a9f4 D |
|
327 | | o 9:cf44d2f5a9f4 D | |
328 | | | |
|
328 | | | | |
329 | | o 8:e273c5e7d2d2 C |
|
329 | | o 8:e273c5e7d2d2 C | |
330 | | | |
|
330 | | | | |
331 |
|
|
331 | @ | 7:02de42196ebe H | |
332 | | | |
|
332 | | | | |
333 | | o 6:eea13746799a G |
|
333 | | o 6:eea13746799a G | |
334 | |/| |
|
334 | |/| | |
335 | o | 5:24b6387c8c8c F |
|
335 | o | 5:24b6387c8c8c F | |
336 | | | |
|
336 | | | | |
337 | | o 4:9520eea781bc E |
|
337 | | o 4:9520eea781bc E | |
338 | |/ |
|
338 | |/ | |
339 | | x 3:32af7686d403 D |
|
339 | | x 3:32af7686d403 D | |
340 | | | |
|
340 | | | | |
341 | | x 2:5fddd98957c8 C |
|
341 | | x 2:5fddd98957c8 C | |
342 | | | |
|
342 | | | | |
343 | | x 1:42ccdea3bb16 B |
|
343 | | x 1:42ccdea3bb16 B | |
344 | |/ |
|
344 | |/ | |
345 | o 0:cd010b8cd998 A |
|
345 | o 0:cd010b8cd998 A | |
346 |
|
346 | |||
347 | $ hg debugobsolete |
|
347 | $ hg debugobsolete | |
348 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b e273c5e7d2d29df783dce9f9eaa3ac4adc69c15d 0 {'date': '*', 'user': 'test'} (glob) |
|
348 | 5fddd98957c8a54a4d436dfe1da9d87f21a1b97b e273c5e7d2d29df783dce9f9eaa3ac4adc69c15d 0 {'date': '*', 'user': 'test'} (glob) | |
349 | 32af7686d403cf45b5d95f2d70cebea587ac806a cf44d2f5a9f4297a62be94cbdd3dff7c7dc54258 0 {'date': '*', 'user': 'test'} (glob) |
|
349 | 32af7686d403cf45b5d95f2d70cebea587ac806a cf44d2f5a9f4297a62be94cbdd3dff7c7dc54258 0 {'date': '*', 'user': 'test'} (glob) | |
350 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 7c6027df6a99d93f461868e5433f63bde20b6dfb 0 {'date': '*', 'user': 'test'} (glob) |
|
350 | 42ccdea3bb16d28e1848c95fe2e44c000f3f21b1 7c6027df6a99d93f461868e5433f63bde20b6dfb 0 {'date': '*', 'user': 'test'} (glob) | |
351 |
|
351 | |||
352 | Test that rewriting leaving instability behind is allowed |
|
352 | Test that rewriting leaving instability behind is allowed | |
353 | --------------------------------------------------------------------- |
|
353 | --------------------------------------------------------------------- | |
354 |
|
354 | |||
355 | $ hg log -r 'children(8)' |
|
355 | $ hg log -r 'children(8)' | |
356 | 9:cf44d2f5a9f4 D (no-eol) |
|
356 | 9:cf44d2f5a9f4 D (no-eol) | |
357 | $ hg rebase -r 8 |
|
357 | $ hg rebase -r 8 | |
358 | $ hg log -G |
|
358 | $ hg log -G | |
359 |
|
|
359 | o 11:0d8f238b634c C | |
360 | | |
|
360 | | | |
361 | o 10:7c6027df6a99 B |
|
361 | o 10:7c6027df6a99 B | |
362 | | |
|
362 | | | |
363 | | o 9:cf44d2f5a9f4 D |
|
363 | | o 9:cf44d2f5a9f4 D | |
364 | | | |
|
364 | | | | |
365 | | x 8:e273c5e7d2d2 C |
|
365 | | x 8:e273c5e7d2d2 C | |
366 | | | |
|
366 | | | | |
367 |
|
|
367 | @ | 7:02de42196ebe H | |
368 | | | |
|
368 | | | | |
369 | | o 6:eea13746799a G |
|
369 | | o 6:eea13746799a G | |
370 | |/| |
|
370 | |/| | |
371 | o | 5:24b6387c8c8c F |
|
371 | o | 5:24b6387c8c8c F | |
372 | | | |
|
372 | | | | |
373 | | o 4:9520eea781bc E |
|
373 | | o 4:9520eea781bc E | |
374 | |/ |
|
374 | |/ | |
375 | o 0:cd010b8cd998 A |
|
375 | o 0:cd010b8cd998 A | |
376 |
|
376 | |||
377 |
|
377 | |||
378 |
|
378 | |||
379 | Test multiple root handling |
|
379 | Test multiple root handling | |
380 | ------------------------------------ |
|
380 | ------------------------------------ | |
381 |
|
381 | |||
382 | $ hg rebase --dest 4 --rev '7+11+9' |
|
382 | $ hg rebase --dest 4 --rev '7+11+9' | |
383 | $ hg log -G |
|
383 | $ hg log -G | |
384 |
|
|
384 | o 14:1e8370e38cca C | |
385 | | |
|
385 | | | |
386 | | o 13:102b4c1d889b D |
|
386 | | o 13:102b4c1d889b D | |
387 | | | |
|
387 | | | | |
388 |
|
|
388 | @ | 12:bfe264faf697 H | |
389 | |/ |
|
389 | |/ | |
390 | | o 10:7c6027df6a99 B |
|
390 | | o 10:7c6027df6a99 B | |
391 | | | |
|
391 | | | | |
392 | | x 7:02de42196ebe H |
|
392 | | x 7:02de42196ebe H | |
393 | | | |
|
393 | | | | |
394 | +---o 6:eea13746799a G |
|
394 | +---o 6:eea13746799a G | |
395 | | |/ |
|
395 | | |/ | |
396 | | o 5:24b6387c8c8c F |
|
396 | | o 5:24b6387c8c8c F | |
397 | | | |
|
397 | | | | |
398 | o | 4:9520eea781bc E |
|
398 | o | 4:9520eea781bc E | |
399 | |/ |
|
399 | |/ | |
400 | o 0:cd010b8cd998 A |
|
400 | o 0:cd010b8cd998 A | |
401 |
|
401 | |||
402 | $ cd .. |
|
402 | $ cd .. | |
403 |
|
403 | |||
404 | test on rebase dropping a merge |
|
404 | test on rebase dropping a merge | |
405 |
|
405 | |||
406 | (setup) |
|
406 | (setup) | |
407 |
|
407 | |||
408 | $ hg init dropmerge |
|
408 | $ hg init dropmerge | |
409 | $ cd dropmerge |
|
409 | $ cd dropmerge | |
410 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
410 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
411 | adding changesets |
|
411 | adding changesets | |
412 | adding manifests |
|
412 | adding manifests | |
413 | adding file changes |
|
413 | adding file changes | |
414 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
414 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
415 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
415 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
416 | $ hg up 3 |
|
416 | $ hg up 3 | |
417 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
417 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
418 | $ hg merge 7 |
|
418 | $ hg merge 7 | |
419 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
419 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
420 | (branch merge, don't forget to commit) |
|
420 | (branch merge, don't forget to commit) | |
421 | $ hg ci -m 'M' |
|
421 | $ hg ci -m 'M' | |
422 | $ echo I > I |
|
422 | $ echo I > I | |
423 | $ hg add I |
|
423 | $ hg add I | |
424 | $ hg ci -m I |
|
424 | $ hg ci -m I | |
425 | $ hg log -G |
|
425 | $ hg log -G | |
426 | @ 9:4bde274eefcf I |
|
426 | @ 9:4bde274eefcf I | |
427 | | |
|
427 | | | |
428 | o 8:53a6a128b2b7 M |
|
428 | o 8:53a6a128b2b7 M | |
429 | |\ |
|
429 | |\ | |
430 | | o 7:02de42196ebe H |
|
430 | | o 7:02de42196ebe H | |
431 | | | |
|
431 | | | | |
432 | | | o 6:eea13746799a G |
|
432 | | | o 6:eea13746799a G | |
433 | | |/| |
|
433 | | |/| | |
434 | | o | 5:24b6387c8c8c F |
|
434 | | o | 5:24b6387c8c8c F | |
435 | | | | |
|
435 | | | | | |
436 | | | o 4:9520eea781bc E |
|
436 | | | o 4:9520eea781bc E | |
437 | | |/ |
|
437 | | |/ | |
438 | o | 3:32af7686d403 D |
|
438 | o | 3:32af7686d403 D | |
439 | | | |
|
439 | | | | |
440 | o | 2:5fddd98957c8 C |
|
440 | o | 2:5fddd98957c8 C | |
441 | | | |
|
441 | | | | |
442 | o | 1:42ccdea3bb16 B |
|
442 | o | 1:42ccdea3bb16 B | |
443 | |/ |
|
443 | |/ | |
444 | o 0:cd010b8cd998 A |
|
444 | o 0:cd010b8cd998 A | |
445 |
|
445 | |||
446 | (actual test) |
|
446 | (actual test) | |
447 |
|
447 | |||
448 | $ hg rebase --dest 6 --rev '((desc(H) + desc(D))::) - desc(M)' |
|
448 | $ hg rebase --dest 6 --rev '((desc(H) + desc(D))::) - desc(M)' | |
449 | $ hg log -G |
|
449 | $ hg log -G | |
450 | @ 12:acd174b7ab39 I |
|
450 | @ 12:acd174b7ab39 I | |
451 | | |
|
451 | | | |
452 | o 11:6c11a6218c97 H |
|
452 | o 11:6c11a6218c97 H | |
453 | | |
|
453 | | | |
454 | | o 10:b5313c85b22e D |
|
454 | | o 10:b5313c85b22e D | |
455 | |/ |
|
455 | |/ | |
456 | | o 8:53a6a128b2b7 M |
|
456 | | o 8:53a6a128b2b7 M | |
457 | | |\ |
|
457 | | |\ | |
458 | | | x 7:02de42196ebe H |
|
458 | | | x 7:02de42196ebe H | |
459 | | | | |
|
459 | | | | | |
460 | o---+ 6:eea13746799a G |
|
460 | o---+ 6:eea13746799a G | |
461 | | | | |
|
461 | | | | | |
462 | | | o 5:24b6387c8c8c F |
|
462 | | | o 5:24b6387c8c8c F | |
463 | | | | |
|
463 | | | | | |
464 | o---+ 4:9520eea781bc E |
|
464 | o---+ 4:9520eea781bc E | |
465 | / / |
|
465 | / / | |
466 | x | 3:32af7686d403 D |
|
466 | x | 3:32af7686d403 D | |
467 | | | |
|
467 | | | | |
468 | o | 2:5fddd98957c8 C |
|
468 | o | 2:5fddd98957c8 C | |
469 | | | |
|
469 | | | | |
470 | o | 1:42ccdea3bb16 B |
|
470 | o | 1:42ccdea3bb16 B | |
471 | |/ |
|
471 | |/ | |
472 | o 0:cd010b8cd998 A |
|
472 | o 0:cd010b8cd998 A | |
473 |
|
473 |
@@ -1,440 +1,440 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 |
|
13 | |||
14 | $ hg init a |
|
14 | $ hg init a | |
15 | $ cd a |
|
15 | $ cd a | |
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
17 | adding changesets |
|
17 | adding changesets | |
18 | adding manifests |
|
18 | adding manifests | |
19 | adding file changes |
|
19 | adding file changes | |
20 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
20 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
21 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
21 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
22 | $ hg up tip |
|
22 | $ hg up tip | |
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
24 |
|
24 | |||
25 | $ echo I > I |
|
25 | $ echo I > I | |
26 | $ hg ci -AmI |
|
26 | $ hg ci -AmI | |
27 | adding I |
|
27 | adding I | |
28 |
|
28 | |||
29 | $ hg tglog |
|
29 | $ hg tglog | |
30 | @ 8: 'I' |
|
30 | @ 8: 'I' | |
31 | | |
|
31 | | | |
32 | o 7: 'H' |
|
32 | o 7: 'H' | |
33 | | |
|
33 | | | |
34 | | o 6: 'G' |
|
34 | | o 6: 'G' | |
35 | |/| |
|
35 | |/| | |
36 | o | 5: 'F' |
|
36 | o | 5: 'F' | |
37 | | | |
|
37 | | | | |
38 | | o 4: 'E' |
|
38 | | o 4: 'E' | |
39 | |/ |
|
39 | |/ | |
40 | | o 3: 'D' |
|
40 | | o 3: 'D' | |
41 | | | |
|
41 | | | | |
42 | | o 2: 'C' |
|
42 | | o 2: 'C' | |
43 | | | |
|
43 | | | | |
44 | | o 1: 'B' |
|
44 | | o 1: 'B' | |
45 | |/ |
|
45 | |/ | |
46 | o 0: 'A' |
|
46 | o 0: 'A' | |
47 |
|
47 | |||
48 | $ cd .. |
|
48 | $ cd .. | |
49 |
|
49 | |||
50 |
|
50 | |||
51 | These fail: |
|
51 | These fail: | |
52 |
|
52 | |||
53 | $ hg clone -q -u . a a1 |
|
53 | $ hg clone -q -u . a a1 | |
54 | $ cd a1 |
|
54 | $ cd a1 | |
55 |
|
55 | |||
56 | $ hg rebase -s 8 -d 7 |
|
56 | $ hg rebase -s 8 -d 7 | |
57 | nothing to rebase |
|
57 | nothing to rebase | |
58 | [1] |
|
58 | [1] | |
59 |
|
59 | |||
60 | $ hg rebase --continue --abort |
|
60 | $ hg rebase --continue --abort | |
61 | abort: cannot use both abort and continue |
|
61 | abort: cannot use both abort and continue | |
62 | [255] |
|
62 | [255] | |
63 |
|
63 | |||
64 | $ hg rebase --continue --collapse |
|
64 | $ hg rebase --continue --collapse | |
65 | abort: cannot use collapse with continue or abort |
|
65 | abort: cannot use collapse with continue or abort | |
66 | [255] |
|
66 | [255] | |
67 |
|
67 | |||
68 | $ hg rebase --continue --dest 4 |
|
68 | $ hg rebase --continue --dest 4 | |
69 | abort: abort and continue do not allow specifying revisions |
|
69 | abort: abort and continue do not allow specifying revisions | |
70 | [255] |
|
70 | [255] | |
71 |
|
71 | |||
72 | $ hg rebase --base 5 --source 4 |
|
72 | $ hg rebase --base 5 --source 4 | |
73 | abort: cannot specify both a source and a base |
|
73 | abort: cannot specify both a source and a base | |
74 | [255] |
|
74 | [255] | |
75 |
|
75 | |||
76 | $ hg rebase --rev 5 --source 4 |
|
76 | $ hg rebase --rev 5 --source 4 | |
77 | abort: cannot specify both a revision and a source |
|
77 | abort: cannot specify both a revision and a source | |
78 | [255] |
|
78 | [255] | |
79 | $ hg rebase --base 5 --rev 4 |
|
79 | $ hg rebase --base 5 --rev 4 | |
80 | abort: cannot specify both a revision and a base |
|
80 | abort: cannot specify both a revision and a base | |
81 | [255] |
|
81 | [255] | |
82 |
|
82 | |||
83 | $ hg rebase |
|
83 | $ hg rebase | |
84 | nothing to rebase |
|
84 | nothing to rebase | |
85 | [1] |
|
85 | [1] | |
86 |
|
86 | |||
87 | $ hg up -q 7 |
|
87 | $ hg up -q 7 | |
88 |
|
88 | |||
89 | $ hg rebase --traceback |
|
89 | $ hg rebase --traceback | |
90 | nothing to rebase |
|
90 | nothing to rebase | |
91 | [1] |
|
91 | [1] | |
92 |
|
92 | |||
93 |
|
93 | |||
94 | These work: |
|
94 | These work: | |
95 |
|
95 | |||
96 | Rebase with no arguments (from 3 onto 8): |
|
96 | Rebase with no arguments (from 3 onto 8): | |
97 |
|
97 | |||
98 | $ hg up -q -C 3 |
|
98 | $ hg up -q -C 3 | |
99 |
|
99 | |||
100 | $ hg rebase |
|
100 | $ hg rebase | |
101 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
101 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
102 |
|
102 | |||
103 | $ hg tglog |
|
103 | $ hg tglog | |
104 | @ 8: 'D' |
|
104 | @ 8: 'D' | |
105 | | |
|
105 | | | |
106 | o 7: 'C' |
|
106 | o 7: 'C' | |
107 | | |
|
107 | | | |
108 | o 6: 'B' |
|
108 | o 6: 'B' | |
109 | | |
|
109 | | | |
110 | o 5: 'I' |
|
110 | o 5: 'I' | |
111 | | |
|
111 | | | |
112 | o 4: 'H' |
|
112 | o 4: 'H' | |
113 | | |
|
113 | | | |
114 | | o 3: 'G' |
|
114 | | o 3: 'G' | |
115 | |/| |
|
115 | |/| | |
116 | o | 2: 'F' |
|
116 | o | 2: 'F' | |
117 | | | |
|
117 | | | | |
118 | | o 1: 'E' |
|
118 | | o 1: 'E' | |
119 | |/ |
|
119 | |/ | |
120 | o 0: 'A' |
|
120 | o 0: 'A' | |
121 |
|
121 | |||
122 | Try to rollback after a rebase (fail): |
|
122 | Try to rollback after a rebase (fail): | |
123 |
|
123 | |||
124 | $ hg rollback |
|
124 | $ hg rollback | |
125 | no rollback information available |
|
125 | no rollback information available | |
126 | [1] |
|
126 | [1] | |
127 |
|
127 | |||
128 | $ cd .. |
|
128 | $ cd .. | |
129 |
|
129 | |||
130 |
|
130 | |||
131 | Rebase with base == '.' => same as no arguments (from 3 onto 8): |
|
131 | Rebase with base == '.' => same as no arguments (from 3 onto 8): | |
132 |
|
132 | |||
133 | $ hg clone -q -u 3 a a2 |
|
133 | $ hg clone -q -u 3 a a2 | |
134 | $ cd a2 |
|
134 | $ cd a2 | |
135 |
|
135 | |||
136 | $ hg rebase --base . |
|
136 | $ hg rebase --base . | |
137 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
137 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
138 |
|
138 | |||
139 | $ hg tglog |
|
139 | $ hg tglog | |
140 | @ 8: 'D' |
|
140 | @ 8: 'D' | |
141 | | |
|
141 | | | |
142 | o 7: 'C' |
|
142 | o 7: 'C' | |
143 | | |
|
143 | | | |
144 | o 6: 'B' |
|
144 | o 6: 'B' | |
145 | | |
|
145 | | | |
146 | o 5: 'I' |
|
146 | o 5: 'I' | |
147 | | |
|
147 | | | |
148 | o 4: 'H' |
|
148 | o 4: 'H' | |
149 | | |
|
149 | | | |
150 | | o 3: 'G' |
|
150 | | o 3: 'G' | |
151 | |/| |
|
151 | |/| | |
152 | o | 2: 'F' |
|
152 | o | 2: 'F' | |
153 | | | |
|
153 | | | | |
154 | | o 1: 'E' |
|
154 | | o 1: 'E' | |
155 | |/ |
|
155 | |/ | |
156 | o 0: 'A' |
|
156 | o 0: 'A' | |
157 |
|
157 | |||
158 | $ cd .. |
|
158 | $ cd .. | |
159 |
|
159 | |||
160 |
|
160 | |||
161 | Rebase with dest == branch(.) => same as no arguments (from 3 onto 8): |
|
161 | Rebase with dest == branch(.) => same as no arguments (from 3 onto 8): | |
162 |
|
162 | |||
163 | $ hg clone -q -u 3 a a3 |
|
163 | $ hg clone -q -u 3 a a3 | |
164 | $ cd a3 |
|
164 | $ cd a3 | |
165 |
|
165 | |||
166 | $ hg rebase --dest 'branch(.)' |
|
166 | $ hg rebase --dest 'branch(.)' | |
167 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
167 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
168 |
|
168 | |||
169 | $ hg tglog |
|
169 | $ hg tglog | |
170 | @ 8: 'D' |
|
170 | @ 8: 'D' | |
171 | | |
|
171 | | | |
172 | o 7: 'C' |
|
172 | o 7: 'C' | |
173 | | |
|
173 | | | |
174 | o 6: 'B' |
|
174 | o 6: 'B' | |
175 | | |
|
175 | | | |
176 | o 5: 'I' |
|
176 | o 5: 'I' | |
177 | | |
|
177 | | | |
178 | o 4: 'H' |
|
178 | o 4: 'H' | |
179 | | |
|
179 | | | |
180 | | o 3: 'G' |
|
180 | | o 3: 'G' | |
181 | |/| |
|
181 | |/| | |
182 | o | 2: 'F' |
|
182 | o | 2: 'F' | |
183 | | | |
|
183 | | | | |
184 | | o 1: 'E' |
|
184 | | o 1: 'E' | |
185 | |/ |
|
185 | |/ | |
186 | o 0: 'A' |
|
186 | o 0: 'A' | |
187 |
|
187 | |||
188 | $ cd .. |
|
188 | $ cd .. | |
189 |
|
189 | |||
190 |
|
190 | |||
191 | Specify only source (from 2 onto 8): |
|
191 | Specify only source (from 2 onto 8): | |
192 |
|
192 | |||
193 | $ hg clone -q -u . a a4 |
|
193 | $ hg clone -q -u . a a4 | |
194 | $ cd a4 |
|
194 | $ cd a4 | |
195 |
|
195 | |||
196 | $ hg rebase --source 'desc("C")' |
|
196 | $ hg rebase --source 'desc("C")' | |
197 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) |
|
197 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) | |
198 |
|
198 | |||
199 | $ hg tglog |
|
199 | $ hg tglog | |
200 |
|
|
200 | o 8: 'D' | |
201 | | |
|
201 | | | |
202 | o 7: 'C' |
|
202 | o 7: 'C' | |
203 | | |
|
203 | | | |
204 |
|
|
204 | @ 6: 'I' | |
205 | | |
|
205 | | | |
206 | o 5: 'H' |
|
206 | o 5: 'H' | |
207 | | |
|
207 | | | |
208 | | o 4: 'G' |
|
208 | | o 4: 'G' | |
209 | |/| |
|
209 | |/| | |
210 | o | 3: 'F' |
|
210 | o | 3: 'F' | |
211 | | | |
|
211 | | | | |
212 | | o 2: 'E' |
|
212 | | o 2: 'E' | |
213 | |/ |
|
213 | |/ | |
214 | | o 1: 'B' |
|
214 | | o 1: 'B' | |
215 | |/ |
|
215 | |/ | |
216 | o 0: 'A' |
|
216 | o 0: 'A' | |
217 |
|
217 | |||
218 | $ cd .. |
|
218 | $ cd .. | |
219 |
|
219 | |||
220 |
|
220 | |||
221 | Specify only dest (from 3 onto 6): |
|
221 | Specify only dest (from 3 onto 6): | |
222 |
|
222 | |||
223 | $ hg clone -q -u 3 a a5 |
|
223 | $ hg clone -q -u 3 a a5 | |
224 | $ cd a5 |
|
224 | $ cd a5 | |
225 |
|
225 | |||
226 | $ hg rebase --dest 6 |
|
226 | $ hg rebase --dest 6 | |
227 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) |
|
227 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) | |
228 |
|
228 | |||
229 | $ hg tglog |
|
229 | $ hg tglog | |
230 | @ 8: 'D' |
|
230 | @ 8: 'D' | |
231 | | |
|
231 | | | |
232 | o 7: 'C' |
|
232 | o 7: 'C' | |
233 | | |
|
233 | | | |
234 | o 6: 'B' |
|
234 | o 6: 'B' | |
235 | | |
|
235 | | | |
236 | | o 5: 'I' |
|
236 | | o 5: 'I' | |
237 | | | |
|
237 | | | | |
238 | | o 4: 'H' |
|
238 | | o 4: 'H' | |
239 | | | |
|
239 | | | | |
240 | o | 3: 'G' |
|
240 | o | 3: 'G' | |
241 | |\| |
|
241 | |\| | |
242 | | o 2: 'F' |
|
242 | | o 2: 'F' | |
243 | | | |
|
243 | | | | |
244 | o | 1: 'E' |
|
244 | o | 1: 'E' | |
245 | |/ |
|
245 | |/ | |
246 | o 0: 'A' |
|
246 | o 0: 'A' | |
247 |
|
247 | |||
248 | $ cd .. |
|
248 | $ cd .. | |
249 |
|
249 | |||
250 |
|
250 | |||
251 | Specify only base (from 1 onto 8): |
|
251 | Specify only base (from 1 onto 8): | |
252 |
|
252 | |||
253 | $ hg clone -q -u . a a6 |
|
253 | $ hg clone -q -u . a a6 | |
254 | $ cd a6 |
|
254 | $ cd a6 | |
255 |
|
255 | |||
256 | $ hg rebase --base 'desc("D")' |
|
256 | $ hg rebase --base 'desc("D")' | |
257 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) |
|
257 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) | |
258 |
|
258 | |||
259 | $ hg tglog |
|
259 | $ hg tglog | |
260 |
|
|
260 | o 8: 'D' | |
261 | | |
|
261 | | | |
262 | o 7: 'C' |
|
262 | o 7: 'C' | |
263 | | |
|
263 | | | |
264 | o 6: 'B' |
|
264 | o 6: 'B' | |
265 | | |
|
265 | | | |
266 |
|
|
266 | @ 5: 'I' | |
267 | | |
|
267 | | | |
268 | o 4: 'H' |
|
268 | o 4: 'H' | |
269 | | |
|
269 | | | |
270 | | o 3: 'G' |
|
270 | | o 3: 'G' | |
271 | |/| |
|
271 | |/| | |
272 | o | 2: 'F' |
|
272 | o | 2: 'F' | |
273 | | | |
|
273 | | | | |
274 | | o 1: 'E' |
|
274 | | o 1: 'E' | |
275 | |/ |
|
275 | |/ | |
276 | o 0: 'A' |
|
276 | o 0: 'A' | |
277 |
|
277 | |||
278 | $ cd .. |
|
278 | $ cd .. | |
279 |
|
279 | |||
280 |
|
280 | |||
281 | Specify source and dest (from 2 onto 7): |
|
281 | Specify source and dest (from 2 onto 7): | |
282 |
|
282 | |||
283 | $ hg clone -q -u . a a7 |
|
283 | $ hg clone -q -u . a a7 | |
284 | $ cd a7 |
|
284 | $ cd a7 | |
285 |
|
285 | |||
286 | $ hg rebase --source 2 --dest 7 |
|
286 | $ hg rebase --source 2 --dest 7 | |
287 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/*-backup.hg (glob) |
|
287 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/*-backup.hg (glob) | |
288 |
|
288 | |||
289 | $ hg tglog |
|
289 | $ hg tglog | |
290 |
|
|
290 | o 8: 'D' | |
291 | | |
|
291 | | | |
292 | o 7: 'C' |
|
292 | o 7: 'C' | |
293 | | |
|
293 | | | |
294 |
| |
|
294 | | @ 6: 'I' | |
295 | |/ |
|
295 | |/ | |
296 | o 5: 'H' |
|
296 | o 5: 'H' | |
297 | | |
|
297 | | | |
298 | | o 4: 'G' |
|
298 | | o 4: 'G' | |
299 | |/| |
|
299 | |/| | |
300 | o | 3: 'F' |
|
300 | o | 3: 'F' | |
301 | | | |
|
301 | | | | |
302 | | o 2: 'E' |
|
302 | | o 2: 'E' | |
303 | |/ |
|
303 | |/ | |
304 | | o 1: 'B' |
|
304 | | o 1: 'B' | |
305 | |/ |
|
305 | |/ | |
306 | o 0: 'A' |
|
306 | o 0: 'A' | |
307 |
|
307 | |||
308 | $ cd .. |
|
308 | $ cd .. | |
309 |
|
309 | |||
310 |
|
310 | |||
311 | Specify base and dest (from 1 onto 7): |
|
311 | Specify base and dest (from 1 onto 7): | |
312 |
|
312 | |||
313 | $ hg clone -q -u . a a8 |
|
313 | $ hg clone -q -u . a a8 | |
314 | $ cd a8 |
|
314 | $ cd a8 | |
315 |
|
315 | |||
316 | $ hg rebase --base 3 --dest 7 |
|
316 | $ hg rebase --base 3 --dest 7 | |
317 | saved backup bundle to $TESTTMP/a8/.hg/strip-backup/*-backup.hg (glob) |
|
317 | saved backup bundle to $TESTTMP/a8/.hg/strip-backup/*-backup.hg (glob) | |
318 |
|
318 | |||
319 | $ hg tglog |
|
319 | $ hg tglog | |
320 |
|
|
320 | o 8: 'D' | |
321 | | |
|
321 | | | |
322 | o 7: 'C' |
|
322 | o 7: 'C' | |
323 | | |
|
323 | | | |
324 | o 6: 'B' |
|
324 | o 6: 'B' | |
325 | | |
|
325 | | | |
326 |
| |
|
326 | | @ 5: 'I' | |
327 | |/ |
|
327 | |/ | |
328 | o 4: 'H' |
|
328 | o 4: 'H' | |
329 | | |
|
329 | | | |
330 | | o 3: 'G' |
|
330 | | o 3: 'G' | |
331 | |/| |
|
331 | |/| | |
332 | o | 2: 'F' |
|
332 | o | 2: 'F' | |
333 | | | |
|
333 | | | | |
334 | | o 1: 'E' |
|
334 | | o 1: 'E' | |
335 | |/ |
|
335 | |/ | |
336 | o 0: 'A' |
|
336 | o 0: 'A' | |
337 |
|
337 | |||
338 | $ cd .. |
|
338 | $ cd .. | |
339 |
|
339 | |||
340 |
|
340 | |||
341 | Specify only revs (from 2 onto 8) |
|
341 | Specify only revs (from 2 onto 8) | |
342 |
|
342 | |||
343 | $ hg clone -q -u . a a9 |
|
343 | $ hg clone -q -u . a a9 | |
344 | $ cd a9 |
|
344 | $ cd a9 | |
345 |
|
345 | |||
346 | $ hg rebase --rev 'desc("C")::' |
|
346 | $ hg rebase --rev 'desc("C")::' | |
347 | saved backup bundle to $TESTTMP/a9/.hg/strip-backup/*-backup.hg (glob) |
|
347 | saved backup bundle to $TESTTMP/a9/.hg/strip-backup/*-backup.hg (glob) | |
348 |
|
348 | |||
349 | $ hg tglog |
|
349 | $ hg tglog | |
350 |
|
|
350 | o 8: 'D' | |
351 | | |
|
351 | | | |
352 | o 7: 'C' |
|
352 | o 7: 'C' | |
353 | | |
|
353 | | | |
354 |
|
|
354 | @ 6: 'I' | |
355 | | |
|
355 | | | |
356 | o 5: 'H' |
|
356 | o 5: 'H' | |
357 | | |
|
357 | | | |
358 | | o 4: 'G' |
|
358 | | o 4: 'G' | |
359 | |/| |
|
359 | |/| | |
360 | o | 3: 'F' |
|
360 | o | 3: 'F' | |
361 | | | |
|
361 | | | | |
362 | | o 2: 'E' |
|
362 | | o 2: 'E' | |
363 | |/ |
|
363 | |/ | |
364 | | o 1: 'B' |
|
364 | | o 1: 'B' | |
365 | |/ |
|
365 | |/ | |
366 | o 0: 'A' |
|
366 | o 0: 'A' | |
367 |
|
367 | |||
368 | $ cd .. |
|
368 | $ cd .. | |
369 |
|
369 | |||
370 | Test --tool parameter: |
|
370 | Test --tool parameter: | |
371 |
|
371 | |||
372 | $ hg init b |
|
372 | $ hg init b | |
373 | $ cd b |
|
373 | $ cd b | |
374 |
|
374 | |||
375 | $ echo c1 > c1 |
|
375 | $ echo c1 > c1 | |
376 | $ hg ci -Am c1 |
|
376 | $ hg ci -Am c1 | |
377 | adding c1 |
|
377 | adding c1 | |
378 |
|
378 | |||
379 | $ echo c2 > c2 |
|
379 | $ echo c2 > c2 | |
380 | $ hg ci -Am c2 |
|
380 | $ hg ci -Am c2 | |
381 | adding c2 |
|
381 | adding c2 | |
382 |
|
382 | |||
383 | $ hg up -q 0 |
|
383 | $ hg up -q 0 | |
384 | $ echo c2b > c2 |
|
384 | $ echo c2b > c2 | |
385 | $ hg ci -Am c2b |
|
385 | $ hg ci -Am c2b | |
386 | adding c2 |
|
386 | adding c2 | |
387 | created new head |
|
387 | created new head | |
388 |
|
388 | |||
389 | $ cd .. |
|
389 | $ cd .. | |
390 |
|
390 | |||
391 | $ hg clone -q -u . b b1 |
|
391 | $ hg clone -q -u . b b1 | |
392 | $ cd b1 |
|
392 | $ cd b1 | |
393 |
|
393 | |||
394 | $ hg rebase -s 2 -d 1 --tool internal:local |
|
394 | $ hg rebase -s 2 -d 1 --tool internal:local | |
395 | saved backup bundle to $TESTTMP/b1/.hg/strip-backup/*-backup.hg (glob) |
|
395 | saved backup bundle to $TESTTMP/b1/.hg/strip-backup/*-backup.hg (glob) | |
396 |
|
396 | |||
397 | $ hg cat c2 |
|
397 | $ hg cat c2 | |
398 | c2 |
|
398 | c2 | |
399 |
|
399 | |||
400 | $ cd .. |
|
400 | $ cd .. | |
401 |
|
401 | |||
402 |
|
402 | |||
403 | $ hg clone -q -u . b b2 |
|
403 | $ hg clone -q -u . b b2 | |
404 | $ cd b2 |
|
404 | $ cd b2 | |
405 |
|
405 | |||
406 | $ hg rebase -s 2 -d 1 --tool internal:other |
|
406 | $ hg rebase -s 2 -d 1 --tool internal:other | |
407 | saved backup bundle to $TESTTMP/b2/.hg/strip-backup/*-backup.hg (glob) |
|
407 | saved backup bundle to $TESTTMP/b2/.hg/strip-backup/*-backup.hg (glob) | |
408 |
|
408 | |||
409 | $ hg cat c2 |
|
409 | $ hg cat c2 | |
410 | c2b |
|
410 | c2b | |
411 |
|
411 | |||
412 | $ cd .. |
|
412 | $ cd .. | |
413 |
|
413 | |||
414 |
|
414 | |||
415 | $ hg clone -q -u . b b3 |
|
415 | $ hg clone -q -u . b b3 | |
416 | $ cd b3 |
|
416 | $ cd b3 | |
417 |
|
417 | |||
418 | $ hg rebase -s 2 -d 1 --tool internal:fail |
|
418 | $ hg rebase -s 2 -d 1 --tool internal:fail | |
419 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
419 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
420 | [1] |
|
420 | [1] | |
421 |
|
421 | |||
422 | $ hg summary |
|
422 | $ hg summary | |
423 | parent: 1:56daeba07f4b |
|
423 | parent: 1:56daeba07f4b | |
424 | c2 |
|
424 | c2 | |
425 | parent: 2:e4e3f3546619 tip |
|
425 | parent: 2:e4e3f3546619 tip | |
426 | c2b |
|
426 | c2b | |
427 | branch: default |
|
427 | branch: default | |
428 | commit: 1 modified, 1 unresolved (merge) |
|
428 | commit: 1 modified, 1 unresolved (merge) | |
429 | update: (current) |
|
429 | update: (current) | |
430 | rebase: 0 rebased, 1 remaining (rebase --continue) |
|
430 | rebase: 0 rebased, 1 remaining (rebase --continue) | |
431 |
|
431 | |||
432 | $ hg resolve -l |
|
432 | $ hg resolve -l | |
433 | U c2 |
|
433 | U c2 | |
434 |
|
434 | |||
435 | $ hg resolve -m c2 |
|
435 | $ hg resolve -m c2 | |
436 | $ hg rebase -c --tool internal:fail |
|
436 | $ hg rebase -c --tool internal:fail | |
437 | tool option will be ignored |
|
437 | tool option will be ignored | |
438 | saved backup bundle to $TESTTMP/b3/.hg/strip-backup/*-backup.hg (glob) |
|
438 | saved backup bundle to $TESTTMP/b3/.hg/strip-backup/*-backup.hg (glob) | |
439 |
|
439 | |||
440 | $ cd .. |
|
440 | $ cd .. |
@@ -1,652 +1,652 b'' | |||||
1 | $ cat >> $HGRCPATH <<EOF |
|
1 | $ cat >> $HGRCPATH <<EOF | |
2 | > [extensions] |
|
2 | > [extensions] | |
3 | > graphlog= |
|
3 | > graphlog= | |
4 | > rebase= |
|
4 | > rebase= | |
5 | > |
|
5 | > | |
6 | > [phases] |
|
6 | > [phases] | |
7 | > publish=False |
|
7 | > publish=False | |
8 | > |
|
8 | > | |
9 | > [alias] |
|
9 | > [alias] | |
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" |
|
10 | > tglog = log -G --template "{rev}: '{desc}' {branches}\n" | |
11 | > EOF |
|
11 | > EOF | |
12 |
|
12 | |||
13 |
|
13 | |||
14 | $ hg init a |
|
14 | $ hg init a | |
15 | $ cd a |
|
15 | $ cd a | |
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" |
|
16 | $ hg unbundle "$TESTDIR/bundles/rebase.hg" | |
17 | adding changesets |
|
17 | adding changesets | |
18 | adding manifests |
|
18 | adding manifests | |
19 | adding file changes |
|
19 | adding file changes | |
20 | added 8 changesets with 7 changes to 7 files (+2 heads) |
|
20 | added 8 changesets with 7 changes to 7 files (+2 heads) | |
21 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
21 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
22 | $ hg up tip |
|
22 | $ hg up tip | |
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
23 | 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
24 | $ cd .. |
|
24 | $ cd .. | |
25 |
|
25 | |||
26 |
|
26 | |||
27 | Rebasing |
|
27 | Rebasing | |
28 | D onto H - simple rebase: |
|
28 | D onto H - simple rebase: | |
29 |
|
29 | |||
30 | $ hg clone -q -u . a a1 |
|
30 | $ hg clone -q -u . a a1 | |
31 | $ cd a1 |
|
31 | $ cd a1 | |
32 |
|
32 | |||
33 | $ hg tglog |
|
33 | $ hg tglog | |
34 | @ 7: 'H' |
|
34 | @ 7: 'H' | |
35 | | |
|
35 | | | |
36 | | o 6: 'G' |
|
36 | | o 6: 'G' | |
37 | |/| |
|
37 | |/| | |
38 | o | 5: 'F' |
|
38 | o | 5: 'F' | |
39 | | | |
|
39 | | | | |
40 | | o 4: 'E' |
|
40 | | o 4: 'E' | |
41 | |/ |
|
41 | |/ | |
42 | | o 3: 'D' |
|
42 | | o 3: 'D' | |
43 | | | |
|
43 | | | | |
44 | | o 2: 'C' |
|
44 | | o 2: 'C' | |
45 | | | |
|
45 | | | | |
46 | | o 1: 'B' |
|
46 | | o 1: 'B' | |
47 | |/ |
|
47 | |/ | |
48 | o 0: 'A' |
|
48 | o 0: 'A' | |
49 |
|
49 | |||
50 |
|
50 | |||
51 | $ hg rebase -s 3 -d 7 |
|
51 | $ hg rebase -s 3 -d 7 | |
52 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) |
|
52 | saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob) | |
53 |
|
53 | |||
54 | $ hg tglog |
|
54 | $ hg tglog | |
55 |
|
|
55 | o 7: 'D' | |
56 | | |
|
56 | | | |
57 |
|
|
57 | @ 6: 'H' | |
58 | | |
|
58 | | | |
59 | | o 5: 'G' |
|
59 | | o 5: 'G' | |
60 | |/| |
|
60 | |/| | |
61 | o | 4: 'F' |
|
61 | o | 4: 'F' | |
62 | | | |
|
62 | | | | |
63 | | o 3: 'E' |
|
63 | | o 3: 'E' | |
64 | |/ |
|
64 | |/ | |
65 | | o 2: 'C' |
|
65 | | o 2: 'C' | |
66 | | | |
|
66 | | | | |
67 | | o 1: 'B' |
|
67 | | o 1: 'B' | |
68 | |/ |
|
68 | |/ | |
69 | o 0: 'A' |
|
69 | o 0: 'A' | |
70 |
|
70 | |||
71 | $ cd .. |
|
71 | $ cd .. | |
72 |
|
72 | |||
73 |
|
73 | |||
74 | D onto F - intermediate point: |
|
74 | D onto F - intermediate point: | |
75 |
|
75 | |||
76 | $ hg clone -q -u . a a2 |
|
76 | $ hg clone -q -u . a a2 | |
77 | $ cd a2 |
|
77 | $ cd a2 | |
78 |
|
78 | |||
79 | $ hg rebase -s 3 -d 5 |
|
79 | $ hg rebase -s 3 -d 5 | |
80 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) |
|
80 | saved backup bundle to $TESTTMP/a2/.hg/strip-backup/*-backup.hg (glob) | |
81 |
|
81 | |||
82 | $ hg tglog |
|
82 | $ hg tglog | |
83 |
|
|
83 | o 7: 'D' | |
84 | | |
|
84 | | | |
85 |
| |
|
85 | | @ 6: 'H' | |
86 | |/ |
|
86 | |/ | |
87 | | o 5: 'G' |
|
87 | | o 5: 'G' | |
88 | |/| |
|
88 | |/| | |
89 | o | 4: 'F' |
|
89 | o | 4: 'F' | |
90 | | | |
|
90 | | | | |
91 | | o 3: 'E' |
|
91 | | o 3: 'E' | |
92 | |/ |
|
92 | |/ | |
93 | | o 2: 'C' |
|
93 | | o 2: 'C' | |
94 | | | |
|
94 | | | | |
95 | | o 1: 'B' |
|
95 | | o 1: 'B' | |
96 | |/ |
|
96 | |/ | |
97 | o 0: 'A' |
|
97 | o 0: 'A' | |
98 |
|
98 | |||
99 | $ cd .. |
|
99 | $ cd .. | |
100 |
|
100 | |||
101 |
|
101 | |||
102 | E onto H - skip of G: |
|
102 | E onto H - skip of G: | |
103 |
|
103 | |||
104 | $ hg clone -q -u . a a3 |
|
104 | $ hg clone -q -u . a a3 | |
105 | $ cd a3 |
|
105 | $ cd a3 | |
106 |
|
106 | |||
107 | $ hg rebase -s 4 -d 7 |
|
107 | $ hg rebase -s 4 -d 7 | |
108 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) |
|
108 | saved backup bundle to $TESTTMP/a3/.hg/strip-backup/*-backup.hg (glob) | |
109 |
|
109 | |||
110 | $ hg tglog |
|
110 | $ hg tglog | |
111 |
|
|
111 | o 6: 'E' | |
112 | | |
|
112 | | | |
113 |
|
|
113 | @ 5: 'H' | |
114 | | |
|
114 | | | |
115 | o 4: 'F' |
|
115 | o 4: 'F' | |
116 | | |
|
116 | | | |
117 | | o 3: 'D' |
|
117 | | o 3: 'D' | |
118 | | | |
|
118 | | | | |
119 | | o 2: 'C' |
|
119 | | o 2: 'C' | |
120 | | | |
|
120 | | | | |
121 | | o 1: 'B' |
|
121 | | o 1: 'B' | |
122 | |/ |
|
122 | |/ | |
123 | o 0: 'A' |
|
123 | o 0: 'A' | |
124 |
|
124 | |||
125 | $ cd .. |
|
125 | $ cd .. | |
126 |
|
126 | |||
127 |
|
127 | |||
128 | F onto E - rebase of a branching point (skip G): |
|
128 | F onto E - rebase of a branching point (skip G): | |
129 |
|
129 | |||
130 | $ hg clone -q -u . a a4 |
|
130 | $ hg clone -q -u . a a4 | |
131 | $ cd a4 |
|
131 | $ cd a4 | |
132 |
|
132 | |||
133 | $ hg rebase -s 5 -d 4 |
|
133 | $ hg rebase -s 5 -d 4 | |
134 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) |
|
134 | saved backup bundle to $TESTTMP/a4/.hg/strip-backup/*-backup.hg (glob) | |
135 |
|
135 | |||
136 | $ hg tglog |
|
136 | $ hg tglog | |
137 | @ 6: 'H' |
|
137 | @ 6: 'H' | |
138 | | |
|
138 | | | |
139 | o 5: 'F' |
|
139 | o 5: 'F' | |
140 | | |
|
140 | | | |
141 | o 4: 'E' |
|
141 | o 4: 'E' | |
142 | | |
|
142 | | | |
143 | | o 3: 'D' |
|
143 | | o 3: 'D' | |
144 | | | |
|
144 | | | | |
145 | | o 2: 'C' |
|
145 | | o 2: 'C' | |
146 | | | |
|
146 | | | | |
147 | | o 1: 'B' |
|
147 | | o 1: 'B' | |
148 | |/ |
|
148 | |/ | |
149 | o 0: 'A' |
|
149 | o 0: 'A' | |
150 |
|
150 | |||
151 | $ cd .. |
|
151 | $ cd .. | |
152 |
|
152 | |||
153 |
|
153 | |||
154 | G onto H - merged revision having a parent in ancestors of target: |
|
154 | G onto H - merged revision having a parent in ancestors of target: | |
155 |
|
155 | |||
156 | $ hg clone -q -u . a a5 |
|
156 | $ hg clone -q -u . a a5 | |
157 | $ cd a5 |
|
157 | $ cd a5 | |
158 |
|
158 | |||
159 | $ hg rebase -s 6 -d 7 |
|
159 | $ hg rebase -s 6 -d 7 | |
160 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) |
|
160 | saved backup bundle to $TESTTMP/a5/.hg/strip-backup/*-backup.hg (glob) | |
161 |
|
161 | |||
162 | $ hg tglog |
|
162 | $ hg tglog | |
163 |
|
|
163 | o 7: 'G' | |
164 | |\ |
|
164 | |\ | |
165 |
| |
|
165 | | @ 6: 'H' | |
166 | | | |
|
166 | | | | |
167 | | o 5: 'F' |
|
167 | | o 5: 'F' | |
168 | | | |
|
168 | | | | |
169 | o | 4: 'E' |
|
169 | o | 4: 'E' | |
170 | |/ |
|
170 | |/ | |
171 | | o 3: 'D' |
|
171 | | o 3: 'D' | |
172 | | | |
|
172 | | | | |
173 | | o 2: 'C' |
|
173 | | o 2: 'C' | |
174 | | | |
|
174 | | | | |
175 | | o 1: 'B' |
|
175 | | o 1: 'B' | |
176 | |/ |
|
176 | |/ | |
177 | o 0: 'A' |
|
177 | o 0: 'A' | |
178 |
|
178 | |||
179 | $ cd .. |
|
179 | $ cd .. | |
180 |
|
180 | |||
181 |
|
181 | |||
182 | F onto B - G maintains E as parent: |
|
182 | F onto B - G maintains E as parent: | |
183 |
|
183 | |||
184 | $ hg clone -q -u . a a6 |
|
184 | $ hg clone -q -u . a a6 | |
185 | $ cd a6 |
|
185 | $ cd a6 | |
186 |
|
186 | |||
187 | $ hg rebase -s 5 -d 1 |
|
187 | $ hg rebase -s 5 -d 1 | |
188 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) |
|
188 | saved backup bundle to $TESTTMP/a6/.hg/strip-backup/*-backup.hg (glob) | |
189 |
|
189 | |||
190 | $ hg tglog |
|
190 | $ hg tglog | |
191 | @ 7: 'H' |
|
191 | @ 7: 'H' | |
192 | | |
|
192 | | | |
193 | | o 6: 'G' |
|
193 | | o 6: 'G' | |
194 | |/| |
|
194 | |/| | |
195 | o | 5: 'F' |
|
195 | o | 5: 'F' | |
196 | | | |
|
196 | | | | |
197 | | o 4: 'E' |
|
197 | | o 4: 'E' | |
198 | | | |
|
198 | | | | |
199 | | | o 3: 'D' |
|
199 | | | o 3: 'D' | |
200 | | | | |
|
200 | | | | | |
201 | +---o 2: 'C' |
|
201 | +---o 2: 'C' | |
202 | | | |
|
202 | | | | |
203 | o | 1: 'B' |
|
203 | o | 1: 'B' | |
204 | |/ |
|
204 | |/ | |
205 | o 0: 'A' |
|
205 | o 0: 'A' | |
206 |
|
206 | |||
207 | $ cd .. |
|
207 | $ cd .. | |
208 |
|
208 | |||
209 |
|
209 | |||
210 | These will fail (using --source): |
|
210 | These will fail (using --source): | |
211 |
|
211 | |||
212 | G onto F - rebase onto an ancestor: |
|
212 | G onto F - rebase onto an ancestor: | |
213 |
|
213 | |||
214 | $ hg clone -q -u . a a7 |
|
214 | $ hg clone -q -u . a a7 | |
215 | $ cd a7 |
|
215 | $ cd a7 | |
216 |
|
216 | |||
217 | $ hg rebase -s 6 -d 5 |
|
217 | $ hg rebase -s 6 -d 5 | |
218 | nothing to rebase |
|
218 | nothing to rebase | |
219 | [1] |
|
219 | [1] | |
220 |
|
220 | |||
221 | F onto G - rebase onto a descendant: |
|
221 | F onto G - rebase onto a descendant: | |
222 |
|
222 | |||
223 | $ hg rebase -s 5 -d 6 |
|
223 | $ hg rebase -s 5 -d 6 | |
224 | abort: source is ancestor of destination |
|
224 | abort: source is ancestor of destination | |
225 | [255] |
|
225 | [255] | |
226 |
|
226 | |||
227 | G onto B - merge revision with both parents not in ancestors of target: |
|
227 | G onto B - merge revision with both parents not in ancestors of target: | |
228 |
|
228 | |||
229 | $ hg rebase -s 6 -d 1 |
|
229 | $ hg rebase -s 6 -d 1 | |
230 | abort: cannot use revision 6 as base, result would have 3 parents |
|
230 | abort: cannot use revision 6 as base, result would have 3 parents | |
231 | [255] |
|
231 | [255] | |
232 |
|
232 | |||
233 |
|
233 | |||
234 | These will abort gracefully (using --base): |
|
234 | These will abort gracefully (using --base): | |
235 |
|
235 | |||
236 | G onto G - rebase onto same changeset: |
|
236 | G onto G - rebase onto same changeset: | |
237 |
|
237 | |||
238 | $ hg rebase -b 6 -d 6 |
|
238 | $ hg rebase -b 6 -d 6 | |
239 | nothing to rebase |
|
239 | nothing to rebase | |
240 | [1] |
|
240 | [1] | |
241 |
|
241 | |||
242 | G onto F - rebase onto an ancestor: |
|
242 | G onto F - rebase onto an ancestor: | |
243 |
|
243 | |||
244 | $ hg rebase -b 6 -d 5 |
|
244 | $ hg rebase -b 6 -d 5 | |
245 | nothing to rebase |
|
245 | nothing to rebase | |
246 | [1] |
|
246 | [1] | |
247 |
|
247 | |||
248 | F onto G - rebase onto a descendant: |
|
248 | F onto G - rebase onto a descendant: | |
249 |
|
249 | |||
250 | $ hg rebase -b 5 -d 6 |
|
250 | $ hg rebase -b 5 -d 6 | |
251 | nothing to rebase |
|
251 | nothing to rebase | |
252 | [1] |
|
252 | [1] | |
253 |
|
253 | |||
254 | C onto A - rebase onto an ancestor: |
|
254 | C onto A - rebase onto an ancestor: | |
255 |
|
255 | |||
256 | $ hg rebase -d 0 -s 2 |
|
256 | $ hg rebase -d 0 -s 2 | |
257 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/5fddd98957c8-backup.hg (glob) |
|
257 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/5fddd98957c8-backup.hg (glob) | |
258 | $ hg tglog |
|
258 | $ hg tglog | |
259 |
|
|
259 | o 7: 'D' | |
260 | | |
|
260 | | | |
261 | o 6: 'C' |
|
261 | o 6: 'C' | |
262 | | |
|
262 | | | |
263 |
| |
|
263 | | @ 5: 'H' | |
264 | | | |
|
264 | | | | |
265 | | | o 4: 'G' |
|
265 | | | o 4: 'G' | |
266 | | |/| |
|
266 | | |/| | |
267 | | o | 3: 'F' |
|
267 | | o | 3: 'F' | |
268 | |/ / |
|
268 | |/ / | |
269 | | o 2: 'E' |
|
269 | | o 2: 'E' | |
270 | |/ |
|
270 | |/ | |
271 | | o 1: 'B' |
|
271 | | o 1: 'B' | |
272 | |/ |
|
272 | |/ | |
273 | o 0: 'A' |
|
273 | o 0: 'A' | |
274 |
|
274 | |||
275 |
|
275 | |||
276 | Check rebasing public changeset |
|
276 | Check rebasing public changeset | |
277 |
|
277 | |||
278 | $ hg pull --config phases.publish=True -q -r 6 . # update phase of 6 |
|
278 | $ hg pull --config phases.publish=True -q -r 6 . # update phase of 6 | |
279 | $ hg rebase -d 0 -b 6 |
|
279 | $ hg rebase -d 0 -b 6 | |
280 | nothing to rebase |
|
280 | nothing to rebase | |
281 | [1] |
|
281 | [1] | |
282 | $ hg rebase -d 5 -b 6 |
|
282 | $ hg rebase -d 5 -b 6 | |
283 | abort: can't rebase immutable changeset e1c4361dd923 |
|
283 | abort: can't rebase immutable changeset e1c4361dd923 | |
284 | (see hg help phases for details) |
|
284 | (see hg help phases for details) | |
285 | [255] |
|
285 | [255] | |
286 |
|
286 | |||
287 | $ hg rebase -d 5 -b 6 --keep |
|
287 | $ hg rebase -d 5 -b 6 --keep | |
288 |
|
288 | |||
289 | Check rebasing mutable changeset |
|
289 | Check rebasing mutable changeset | |
290 | Source phase greater or equal to destination phase: new changeset get the phase of source: |
|
290 | Source phase greater or equal to destination phase: new changeset get the phase of source: | |
291 | $ hg rebase -s9 -d0 |
|
291 | $ hg rebase -s9 -d0 | |
292 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2b23e52411f4-backup.hg (glob) |
|
292 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2b23e52411f4-backup.hg (glob) | |
293 | $ hg log --template "{phase}\n" -r 9 |
|
293 | $ hg log --template "{phase}\n" -r 9 | |
294 | draft |
|
294 | draft | |
295 | $ hg rebase -s9 -d1 |
|
295 | $ hg rebase -s9 -d1 | |
296 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2cb10d0cfc6c-backup.hg (glob) |
|
296 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2cb10d0cfc6c-backup.hg (glob) | |
297 | $ hg log --template "{phase}\n" -r 9 |
|
297 | $ hg log --template "{phase}\n" -r 9 | |
298 | draft |
|
298 | draft | |
299 | $ hg phase --force --secret 9 |
|
299 | $ hg phase --force --secret 9 | |
300 | $ hg rebase -s9 -d0 |
|
300 | $ hg rebase -s9 -d0 | |
301 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/c5b12b67163a-backup.hg (glob) |
|
301 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/c5b12b67163a-backup.hg (glob) | |
302 | $ hg log --template "{phase}\n" -r 9 |
|
302 | $ hg log --template "{phase}\n" -r 9 | |
303 | secret |
|
303 | secret | |
304 | $ hg rebase -s9 -d1 |
|
304 | $ hg rebase -s9 -d1 | |
305 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2a0524f868ac-backup.hg (glob) |
|
305 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/2a0524f868ac-backup.hg (glob) | |
306 | $ hg log --template "{phase}\n" -r 9 |
|
306 | $ hg log --template "{phase}\n" -r 9 | |
307 | secret |
|
307 | secret | |
308 | Source phase lower than destination phase: new changeset get the phase of destination: |
|
308 | Source phase lower than destination phase: new changeset get the phase of destination: | |
309 | $ hg rebase -s8 -d9 |
|
309 | $ hg rebase -s8 -d9 | |
310 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/6d4f22462821-backup.hg (glob) |
|
310 | saved backup bundle to $TESTTMP/a7/.hg/strip-backup/6d4f22462821-backup.hg (glob) | |
311 | $ hg log --template "{phase}\n" -r 'rev(9)' |
|
311 | $ hg log --template "{phase}\n" -r 'rev(9)' | |
312 | secret |
|
312 | secret | |
313 |
|
313 | |||
314 | $ cd .. |
|
314 | $ cd .. | |
315 |
|
315 | |||
316 | Test for revset |
|
316 | Test for revset | |
317 |
|
317 | |||
318 | We need a bit different graph |
|
318 | We need a bit different graph | |
319 | All destination are B |
|
319 | All destination are B | |
320 |
|
320 | |||
321 | $ hg init ah |
|
321 | $ hg init ah | |
322 | $ cd ah |
|
322 | $ cd ah | |
323 | $ hg unbundle "$TESTDIR/bundles/rebase-revset.hg" |
|
323 | $ hg unbundle "$TESTDIR/bundles/rebase-revset.hg" | |
324 | adding changesets |
|
324 | adding changesets | |
325 | adding manifests |
|
325 | adding manifests | |
326 | adding file changes |
|
326 | adding file changes | |
327 | added 9 changesets with 9 changes to 9 files (+2 heads) |
|
327 | added 9 changesets with 9 changes to 9 files (+2 heads) | |
328 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
328 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
329 | $ hg tglog |
|
329 | $ hg tglog | |
330 | o 8: 'I' |
|
330 | o 8: 'I' | |
331 | | |
|
331 | | | |
332 | o 7: 'H' |
|
332 | o 7: 'H' | |
333 | | |
|
333 | | | |
334 | o 6: 'G' |
|
334 | o 6: 'G' | |
335 | | |
|
335 | | | |
336 | | o 5: 'F' |
|
336 | | o 5: 'F' | |
337 | | | |
|
337 | | | | |
338 | | o 4: 'E' |
|
338 | | o 4: 'E' | |
339 | |/ |
|
339 | |/ | |
340 | o 3: 'D' |
|
340 | o 3: 'D' | |
341 | | |
|
341 | | | |
342 | o 2: 'C' |
|
342 | o 2: 'C' | |
343 | | |
|
343 | | | |
344 | | o 1: 'B' |
|
344 | | o 1: 'B' | |
345 | |/ |
|
345 | |/ | |
346 | o 0: 'A' |
|
346 | o 0: 'A' | |
347 |
|
347 | |||
348 | $ cd .. |
|
348 | $ cd .. | |
349 |
|
349 | |||
350 |
|
350 | |||
351 | Simple case with keep: |
|
351 | Simple case with keep: | |
352 |
|
352 | |||
353 | Source on have two descendant heads but ask for one |
|
353 | Source on have two descendant heads but ask for one | |
354 |
|
354 | |||
355 | $ hg clone -q -u . ah ah1 |
|
355 | $ hg clone -q -u . ah ah1 | |
356 | $ cd ah1 |
|
356 | $ cd ah1 | |
357 | $ hg rebase -r '2::8' -d 1 |
|
357 | $ hg rebase -r '2::8' -d 1 | |
358 | abort: can't remove original changesets with unrebased descendants |
|
358 | abort: can't remove original changesets with unrebased descendants | |
359 | (use --keep to keep original changesets) |
|
359 | (use --keep to keep original changesets) | |
360 | [255] |
|
360 | [255] | |
361 | $ hg rebase -r '2::8' -d 1 --keep |
|
361 | $ hg rebase -r '2::8' -d 1 --keep | |
362 | $ hg tglog |
|
362 | $ hg tglog | |
363 |
|
|
363 | o 13: 'I' | |
364 | | |
|
364 | | | |
365 | o 12: 'H' |
|
365 | o 12: 'H' | |
366 | | |
|
366 | | | |
367 | o 11: 'G' |
|
367 | o 11: 'G' | |
368 | | |
|
368 | | | |
369 | o 10: 'D' |
|
369 | o 10: 'D' | |
370 | | |
|
370 | | | |
371 | o 9: 'C' |
|
371 | o 9: 'C' | |
372 | | |
|
372 | | | |
373 | | o 8: 'I' |
|
373 | | o 8: 'I' | |
374 | | | |
|
374 | | | | |
375 | | o 7: 'H' |
|
375 | | o 7: 'H' | |
376 | | | |
|
376 | | | | |
377 | | o 6: 'G' |
|
377 | | o 6: 'G' | |
378 | | | |
|
378 | | | | |
379 | | | o 5: 'F' |
|
379 | | | o 5: 'F' | |
380 | | | | |
|
380 | | | | | |
381 | | | o 4: 'E' |
|
381 | | | o 4: 'E' | |
382 | | |/ |
|
382 | | |/ | |
383 | | o 3: 'D' |
|
383 | | o 3: 'D' | |
384 | | | |
|
384 | | | | |
385 | | o 2: 'C' |
|
385 | | o 2: 'C' | |
386 | | | |
|
386 | | | | |
387 | o | 1: 'B' |
|
387 | o | 1: 'B' | |
388 | |/ |
|
388 | |/ | |
389 | o 0: 'A' |
|
389 | o 0: 'A' | |
390 |
|
390 | |||
391 |
|
391 | |||
392 | $ cd .. |
|
392 | $ cd .. | |
393 |
|
393 | |||
394 | Base on have one descendant heads we ask for but common ancestor have two |
|
394 | Base on have one descendant heads we ask for but common ancestor have two | |
395 |
|
395 | |||
396 | $ hg clone -q -u . ah ah2 |
|
396 | $ hg clone -q -u . ah ah2 | |
397 | $ cd ah2 |
|
397 | $ cd ah2 | |
398 | $ hg rebase -r '3::8' -d 1 |
|
398 | $ hg rebase -r '3::8' -d 1 | |
399 | abort: can't remove original changesets with unrebased descendants |
|
399 | abort: can't remove original changesets with unrebased descendants | |
400 | (use --keep to keep original changesets) |
|
400 | (use --keep to keep original changesets) | |
401 | [255] |
|
401 | [255] | |
402 | $ hg rebase -r '3::8' -d 1 --keep |
|
402 | $ hg rebase -r '3::8' -d 1 --keep | |
403 | $ hg tglog |
|
403 | $ hg tglog | |
404 |
|
|
404 | o 12: 'I' | |
405 | | |
|
405 | | | |
406 | o 11: 'H' |
|
406 | o 11: 'H' | |
407 | | |
|
407 | | | |
408 | o 10: 'G' |
|
408 | o 10: 'G' | |
409 | | |
|
409 | | | |
410 | o 9: 'D' |
|
410 | o 9: 'D' | |
411 | | |
|
411 | | | |
412 | | o 8: 'I' |
|
412 | | o 8: 'I' | |
413 | | | |
|
413 | | | | |
414 | | o 7: 'H' |
|
414 | | o 7: 'H' | |
415 | | | |
|
415 | | | | |
416 | | o 6: 'G' |
|
416 | | o 6: 'G' | |
417 | | | |
|
417 | | | | |
418 | | | o 5: 'F' |
|
418 | | | o 5: 'F' | |
419 | | | | |
|
419 | | | | | |
420 | | | o 4: 'E' |
|
420 | | | o 4: 'E' | |
421 | | |/ |
|
421 | | |/ | |
422 | | o 3: 'D' |
|
422 | | o 3: 'D' | |
423 | | | |
|
423 | | | | |
424 | | o 2: 'C' |
|
424 | | o 2: 'C' | |
425 | | | |
|
425 | | | | |
426 | o | 1: 'B' |
|
426 | o | 1: 'B' | |
427 | |/ |
|
427 | |/ | |
428 | o 0: 'A' |
|
428 | o 0: 'A' | |
429 |
|
429 | |||
430 |
|
430 | |||
431 | $ cd .. |
|
431 | $ cd .. | |
432 |
|
432 | |||
433 | rebase subset |
|
433 | rebase subset | |
434 |
|
434 | |||
435 | $ hg clone -q -u . ah ah3 |
|
435 | $ hg clone -q -u . ah ah3 | |
436 | $ cd ah3 |
|
436 | $ cd ah3 | |
437 | $ hg rebase -r '3::7' -d 1 |
|
437 | $ hg rebase -r '3::7' -d 1 | |
438 | abort: can't remove original changesets with unrebased descendants |
|
438 | abort: can't remove original changesets with unrebased descendants | |
439 | (use --keep to keep original changesets) |
|
439 | (use --keep to keep original changesets) | |
440 | [255] |
|
440 | [255] | |
441 | $ hg rebase -r '3::7' -d 1 --keep |
|
441 | $ hg rebase -r '3::7' -d 1 --keep | |
442 | $ hg tglog |
|
442 | $ hg tglog | |
443 |
|
|
443 | o 11: 'H' | |
444 | | |
|
444 | | | |
445 | o 10: 'G' |
|
445 | o 10: 'G' | |
446 | | |
|
446 | | | |
447 | o 9: 'D' |
|
447 | o 9: 'D' | |
448 | | |
|
448 | | | |
449 | | o 8: 'I' |
|
449 | | o 8: 'I' | |
450 | | | |
|
450 | | | | |
451 | | o 7: 'H' |
|
451 | | o 7: 'H' | |
452 | | | |
|
452 | | | | |
453 | | o 6: 'G' |
|
453 | | o 6: 'G' | |
454 | | | |
|
454 | | | | |
455 | | | o 5: 'F' |
|
455 | | | o 5: 'F' | |
456 | | | | |
|
456 | | | | | |
457 | | | o 4: 'E' |
|
457 | | | o 4: 'E' | |
458 | | |/ |
|
458 | | |/ | |
459 | | o 3: 'D' |
|
459 | | o 3: 'D' | |
460 | | | |
|
460 | | | | |
461 | | o 2: 'C' |
|
461 | | o 2: 'C' | |
462 | | | |
|
462 | | | | |
463 | o | 1: 'B' |
|
463 | o | 1: 'B' | |
464 | |/ |
|
464 | |/ | |
465 | o 0: 'A' |
|
465 | o 0: 'A' | |
466 |
|
466 | |||
467 |
|
467 | |||
468 | $ cd .. |
|
468 | $ cd .. | |
469 |
|
469 | |||
470 | rebase subset with multiple head |
|
470 | rebase subset with multiple head | |
471 |
|
471 | |||
472 | $ hg clone -q -u . ah ah4 |
|
472 | $ hg clone -q -u . ah ah4 | |
473 | $ cd ah4 |
|
473 | $ cd ah4 | |
474 | $ hg rebase -r '3::(7+5)' -d 1 |
|
474 | $ hg rebase -r '3::(7+5)' -d 1 | |
475 | abort: can't remove original changesets with unrebased descendants |
|
475 | abort: can't remove original changesets with unrebased descendants | |
476 | (use --keep to keep original changesets) |
|
476 | (use --keep to keep original changesets) | |
477 | [255] |
|
477 | [255] | |
478 | $ hg rebase -r '3::(7+5)' -d 1 --keep |
|
478 | $ hg rebase -r '3::(7+5)' -d 1 --keep | |
479 | $ hg tglog |
|
479 | $ hg tglog | |
480 |
|
|
480 | o 13: 'H' | |
481 | | |
|
481 | | | |
482 | o 12: 'G' |
|
482 | o 12: 'G' | |
483 | | |
|
483 | | | |
484 | | o 11: 'F' |
|
484 | | o 11: 'F' | |
485 | | | |
|
485 | | | | |
486 | | o 10: 'E' |
|
486 | | o 10: 'E' | |
487 | |/ |
|
487 | |/ | |
488 | o 9: 'D' |
|
488 | o 9: 'D' | |
489 | | |
|
489 | | | |
490 | | o 8: 'I' |
|
490 | | o 8: 'I' | |
491 | | | |
|
491 | | | | |
492 | | o 7: 'H' |
|
492 | | o 7: 'H' | |
493 | | | |
|
493 | | | | |
494 | | o 6: 'G' |
|
494 | | o 6: 'G' | |
495 | | | |
|
495 | | | | |
496 | | | o 5: 'F' |
|
496 | | | o 5: 'F' | |
497 | | | | |
|
497 | | | | | |
498 | | | o 4: 'E' |
|
498 | | | o 4: 'E' | |
499 | | |/ |
|
499 | | |/ | |
500 | | o 3: 'D' |
|
500 | | o 3: 'D' | |
501 | | | |
|
501 | | | | |
502 | | o 2: 'C' |
|
502 | | o 2: 'C' | |
503 | | | |
|
503 | | | | |
504 | o | 1: 'B' |
|
504 | o | 1: 'B' | |
505 | |/ |
|
505 | |/ | |
506 | o 0: 'A' |
|
506 | o 0: 'A' | |
507 |
|
507 | |||
508 |
|
508 | |||
509 | $ cd .. |
|
509 | $ cd .. | |
510 |
|
510 | |||
511 | More advanced tests |
|
511 | More advanced tests | |
512 |
|
512 | |||
513 | rebase on ancestor with revset |
|
513 | rebase on ancestor with revset | |
514 |
|
514 | |||
515 | $ hg clone -q -u . ah ah5 |
|
515 | $ hg clone -q -u . ah ah5 | |
516 | $ cd ah5 |
|
516 | $ cd ah5 | |
517 | $ hg rebase -r '6::' -d 2 |
|
517 | $ hg rebase -r '6::' -d 2 | |
518 | saved backup bundle to $TESTTMP/ah5/.hg/strip-backup/3d8a618087a7-backup.hg (glob) |
|
518 | saved backup bundle to $TESTTMP/ah5/.hg/strip-backup/3d8a618087a7-backup.hg (glob) | |
519 | $ hg tglog |
|
519 | $ hg tglog | |
520 |
|
|
520 | o 8: 'I' | |
521 | | |
|
521 | | | |
522 | o 7: 'H' |
|
522 | o 7: 'H' | |
523 | | |
|
523 | | | |
524 | o 6: 'G' |
|
524 | o 6: 'G' | |
525 | | |
|
525 | | | |
526 | | o 5: 'F' |
|
526 | | o 5: 'F' | |
527 | | | |
|
527 | | | | |
528 | | o 4: 'E' |
|
528 | | o 4: 'E' | |
529 | | | |
|
529 | | | | |
530 | | o 3: 'D' |
|
530 | | o 3: 'D' | |
531 | |/ |
|
531 | |/ | |
532 | o 2: 'C' |
|
532 | o 2: 'C' | |
533 | | |
|
533 | | | |
534 | | o 1: 'B' |
|
534 | | o 1: 'B' | |
535 | |/ |
|
535 | |/ | |
536 | o 0: 'A' |
|
536 | o 0: 'A' | |
537 |
|
537 | |||
538 | $ cd .. |
|
538 | $ cd .. | |
539 |
|
539 | |||
540 |
|
540 | |||
541 | rebase with multiple root. |
|
541 | rebase with multiple root. | |
542 | We rebase E and G on B |
|
542 | We rebase E and G on B | |
543 | We would expect heads are I, F if it was supported |
|
543 | We would expect heads are I, F if it was supported | |
544 |
|
544 | |||
545 | $ hg clone -q -u . ah ah6 |
|
545 | $ hg clone -q -u . ah ah6 | |
546 | $ cd ah6 |
|
546 | $ cd ah6 | |
547 | $ hg rebase -r '(4+6)::' -d 1 |
|
547 | $ hg rebase -r '(4+6)::' -d 1 | |
548 | saved backup bundle to $TESTTMP/ah6/.hg/strip-backup/3d8a618087a7-backup.hg (glob) |
|
548 | saved backup bundle to $TESTTMP/ah6/.hg/strip-backup/3d8a618087a7-backup.hg (glob) | |
549 | $ hg tglog |
|
549 | $ hg tglog | |
550 |
|
|
550 | o 8: 'I' | |
551 | | |
|
551 | | | |
552 | o 7: 'H' |
|
552 | o 7: 'H' | |
553 | | |
|
553 | | | |
554 | o 6: 'G' |
|
554 | o 6: 'G' | |
555 | | |
|
555 | | | |
556 | | o 5: 'F' |
|
556 | | o 5: 'F' | |
557 | | | |
|
557 | | | | |
558 | | o 4: 'E' |
|
558 | | o 4: 'E' | |
559 | |/ |
|
559 | |/ | |
560 | | o 3: 'D' |
|
560 | | o 3: 'D' | |
561 | | | |
|
561 | | | | |
562 | | o 2: 'C' |
|
562 | | o 2: 'C' | |
563 | | | |
|
563 | | | | |
564 | o | 1: 'B' |
|
564 | o | 1: 'B' | |
565 | |/ |
|
565 | |/ | |
566 | o 0: 'A' |
|
566 | o 0: 'A' | |
567 |
|
567 | |||
568 | $ cd .. |
|
568 | $ cd .. | |
569 |
|
569 | |||
570 | More complex rebase with multiple roots |
|
570 | More complex rebase with multiple roots | |
571 | each root have a different common ancestor with the destination and this is a detach |
|
571 | each root have a different common ancestor with the destination and this is a detach | |
572 |
|
572 | |||
573 | (setup) |
|
573 | (setup) | |
574 |
|
574 | |||
575 | $ hg clone -q -u . a a8 |
|
575 | $ hg clone -q -u . a a8 | |
576 | $ cd a8 |
|
576 | $ cd a8 | |
577 | $ echo I > I |
|
577 | $ echo I > I | |
578 | $ hg add I |
|
578 | $ hg add I | |
579 | $ hg commit -m I |
|
579 | $ hg commit -m I | |
580 | $ hg up 4 |
|
580 | $ hg up 4 | |
581 | 1 files updated, 0 files merged, 3 files removed, 0 files unresolved |
|
581 | 1 files updated, 0 files merged, 3 files removed, 0 files unresolved | |
582 | $ echo I > J |
|
582 | $ echo I > J | |
583 | $ hg add J |
|
583 | $ hg add J | |
584 | $ hg commit -m J |
|
584 | $ hg commit -m J | |
585 | created new head |
|
585 | created new head | |
586 | $ echo I > K |
|
586 | $ echo I > K | |
587 | $ hg add K |
|
587 | $ hg add K | |
588 | $ hg commit -m K |
|
588 | $ hg commit -m K | |
589 | $ hg tglog |
|
589 | $ hg tglog | |
590 | @ 10: 'K' |
|
590 | @ 10: 'K' | |
591 | | |
|
591 | | | |
592 | o 9: 'J' |
|
592 | o 9: 'J' | |
593 | | |
|
593 | | | |
594 | | o 8: 'I' |
|
594 | | o 8: 'I' | |
595 | | | |
|
595 | | | | |
596 | | o 7: 'H' |
|
596 | | o 7: 'H' | |
597 | | | |
|
597 | | | | |
598 | +---o 6: 'G' |
|
598 | +---o 6: 'G' | |
599 | | |/ |
|
599 | | |/ | |
600 | | o 5: 'F' |
|
600 | | o 5: 'F' | |
601 | | | |
|
601 | | | | |
602 | o | 4: 'E' |
|
602 | o | 4: 'E' | |
603 | |/ |
|
603 | |/ | |
604 | | o 3: 'D' |
|
604 | | o 3: 'D' | |
605 | | | |
|
605 | | | | |
606 | | o 2: 'C' |
|
606 | | o 2: 'C' | |
607 | | | |
|
607 | | | | |
608 | | o 1: 'B' |
|
608 | | o 1: 'B' | |
609 | |/ |
|
609 | |/ | |
610 | o 0: 'A' |
|
610 | o 0: 'A' | |
611 |
|
611 | |||
612 | (actual test) |
|
612 | (actual test) | |
613 |
|
613 | |||
614 | $ hg rebase --dest 'desc(G)' --rev 'desc(K) + desc(I)' |
|
614 | $ hg rebase --dest 'desc(G)' --rev 'desc(K) + desc(I)' | |
615 | saved backup bundle to $TESTTMP/a8/.hg/strip-backup/23a4ace37988-backup.hg (glob) |
|
615 | saved backup bundle to $TESTTMP/a8/.hg/strip-backup/23a4ace37988-backup.hg (glob) | |
616 | $ hg log --rev 'children(desc(G))' |
|
616 | $ hg log --rev 'children(desc(G))' | |
617 | changeset: 9:adb617877056 |
|
617 | changeset: 9:adb617877056 | |
618 | parent: 6:eea13746799a |
|
618 | parent: 6:eea13746799a | |
619 | user: test |
|
619 | user: test | |
620 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
620 | date: Thu Jan 01 00:00:00 1970 +0000 | |
621 | summary: I |
|
621 | summary: I | |
622 |
|
622 | |||
623 | changeset: 10:882431a34a0e |
|
623 | changeset: 10:882431a34a0e | |
624 | tag: tip |
|
624 | tag: tip | |
625 | parent: 6:eea13746799a |
|
625 | parent: 6:eea13746799a | |
626 | user: test |
|
626 | user: test | |
627 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
627 | date: Thu Jan 01 00:00:00 1970 +0000 | |
628 | summary: K |
|
628 | summary: K | |
629 |
|
629 | |||
630 | $ hg tglog |
|
630 | $ hg tglog | |
631 | @ 10: 'K' |
|
631 | @ 10: 'K' | |
632 | | |
|
632 | | | |
633 | | o 9: 'I' |
|
633 | | o 9: 'I' | |
634 | |/ |
|
634 | |/ | |
635 | | o 8: 'J' |
|
635 | | o 8: 'J' | |
636 | | | |
|
636 | | | | |
637 | | | o 7: 'H' |
|
637 | | | o 7: 'H' | |
638 | | | | |
|
638 | | | | | |
639 | o---+ 6: 'G' |
|
639 | o---+ 6: 'G' | |
640 | |/ / |
|
640 | |/ / | |
641 | | o 5: 'F' |
|
641 | | o 5: 'F' | |
642 | | | |
|
642 | | | | |
643 | o | 4: 'E' |
|
643 | o | 4: 'E' | |
644 | |/ |
|
644 | |/ | |
645 | | o 3: 'D' |
|
645 | | o 3: 'D' | |
646 | | | |
|
646 | | | | |
647 | | o 2: 'C' |
|
647 | | o 2: 'C' | |
648 | | | |
|
648 | | | | |
649 | | o 1: 'B' |
|
649 | | o 1: 'B' | |
650 | |/ |
|
650 | |/ | |
651 | o 0: 'A' |
|
651 | o 0: 'A' | |
652 |
|
652 |
General Comments 0
You need to be logged in to leave comments.
Login now