##// END OF EJS Templates
histedit: omit useless message from update (histeditaction)...
timeless -
r27405:5837ca67 default
parent child Browse files
Show More
@@ -1,1414 +1,1414 b''
1 # histedit.py - interactive history editing for mercurial
1 # histedit.py - interactive history editing for mercurial
2 #
2 #
3 # Copyright 2009 Augie Fackler <raf@durin42.com>
3 # Copyright 2009 Augie Fackler <raf@durin42.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 """interactive history editing
7 """interactive history editing
8
8
9 With this extension installed, Mercurial gains one new command: histedit. Usage
9 With this extension installed, Mercurial gains one new command: histedit. Usage
10 is as follows, assuming the following history::
10 is as follows, assuming the following history::
11
11
12 @ 3[tip] 7c2fd3b9020c 2009-04-27 18:04 -0500 durin42
12 @ 3[tip] 7c2fd3b9020c 2009-04-27 18:04 -0500 durin42
13 | Add delta
13 | Add delta
14 |
14 |
15 o 2 030b686bedc4 2009-04-27 18:04 -0500 durin42
15 o 2 030b686bedc4 2009-04-27 18:04 -0500 durin42
16 | Add gamma
16 | Add gamma
17 |
17 |
18 o 1 c561b4e977df 2009-04-27 18:04 -0500 durin42
18 o 1 c561b4e977df 2009-04-27 18:04 -0500 durin42
19 | Add beta
19 | Add beta
20 |
20 |
21 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
21 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
22 Add alpha
22 Add alpha
23
23
24 If you were to run ``hg histedit c561b4e977df``, you would see the following
24 If you were to run ``hg histedit c561b4e977df``, you would see the following
25 file open in your editor::
25 file open in your editor::
26
26
27 pick c561b4e977df Add beta
27 pick c561b4e977df Add beta
28 pick 030b686bedc4 Add gamma
28 pick 030b686bedc4 Add gamma
29 pick 7c2fd3b9020c Add delta
29 pick 7c2fd3b9020c Add delta
30
30
31 # Edit history between c561b4e977df and 7c2fd3b9020c
31 # Edit history between c561b4e977df and 7c2fd3b9020c
32 #
32 #
33 # Commits are listed from least to most recent
33 # Commits are listed from least to most recent
34 #
34 #
35 # Commands:
35 # Commands:
36 # p, pick = use commit
36 # p, pick = use commit
37 # e, edit = use commit, but stop for amending
37 # e, edit = use commit, but stop for amending
38 # f, fold = use commit, but combine it with the one above
38 # f, fold = use commit, but combine it with the one above
39 # r, roll = like fold, but discard this commit's description
39 # r, roll = like fold, but discard this commit's description
40 # d, drop = remove commit from history
40 # d, drop = remove commit from history
41 # m, mess = edit commit message without changing commit content
41 # m, mess = edit commit message without changing commit content
42 #
42 #
43
43
44 In this file, lines beginning with ``#`` are ignored. You must specify a rule
44 In this file, lines beginning with ``#`` are ignored. You must specify a rule
45 for each revision in your history. For example, if you had meant to add gamma
45 for each revision in your history. For example, if you had meant to add gamma
46 before beta, and then wanted to add delta in the same revision as beta, you
46 before beta, and then wanted to add delta in the same revision as beta, you
47 would reorganize the file to look like this::
47 would reorganize the file to look like this::
48
48
49 pick 030b686bedc4 Add gamma
49 pick 030b686bedc4 Add gamma
50 pick c561b4e977df Add beta
50 pick c561b4e977df Add beta
51 fold 7c2fd3b9020c Add delta
51 fold 7c2fd3b9020c Add delta
52
52
53 # Edit history between c561b4e977df and 7c2fd3b9020c
53 # Edit history between c561b4e977df and 7c2fd3b9020c
54 #
54 #
55 # Commits are listed from least to most recent
55 # Commits are listed from least to most recent
56 #
56 #
57 # Commands:
57 # Commands:
58 # p, pick = use commit
58 # p, pick = use commit
59 # e, edit = use commit, but stop for amending
59 # e, edit = use commit, but stop for amending
60 # f, fold = use commit, but combine it with the one above
60 # f, fold = use commit, but combine it with the one above
61 # r, roll = like fold, but discard this commit's description
61 # r, roll = like fold, but discard this commit's description
62 # d, drop = remove commit from history
62 # d, drop = remove commit from history
63 # m, mess = edit commit message without changing commit content
63 # m, mess = edit commit message without changing commit content
64 #
64 #
65
65
66 At which point you close the editor and ``histedit`` starts working. When you
66 At which point you close the editor and ``histedit`` starts working. When you
67 specify a ``fold`` operation, ``histedit`` will open an editor when it folds
67 specify a ``fold`` operation, ``histedit`` will open an editor when it folds
68 those revisions together, offering you a chance to clean up the commit message::
68 those revisions together, offering you a chance to clean up the commit message::
69
69
70 Add beta
70 Add beta
71 ***
71 ***
72 Add delta
72 Add delta
73
73
74 Edit the commit message to your liking, then close the editor. For
74 Edit the commit message to your liking, then close the editor. For
75 this example, let's assume that the commit message was changed to
75 this example, let's assume that the commit message was changed to
76 ``Add beta and delta.`` After histedit has run and had a chance to
76 ``Add beta and delta.`` After histedit has run and had a chance to
77 remove any old or temporary revisions it needed, the history looks
77 remove any old or temporary revisions it needed, the history looks
78 like this::
78 like this::
79
79
80 @ 2[tip] 989b4d060121 2009-04-27 18:04 -0500 durin42
80 @ 2[tip] 989b4d060121 2009-04-27 18:04 -0500 durin42
81 | Add beta and delta.
81 | Add beta and delta.
82 |
82 |
83 o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
83 o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
84 | Add gamma
84 | Add gamma
85 |
85 |
86 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
86 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
87 Add alpha
87 Add alpha
88
88
89 Note that ``histedit`` does *not* remove any revisions (even its own temporary
89 Note that ``histedit`` does *not* remove any revisions (even its own temporary
90 ones) until after it has completed all the editing operations, so it will
90 ones) until after it has completed all the editing operations, so it will
91 probably perform several strip operations when it's done. For the above example,
91 probably perform several strip operations when it's done. For the above example,
92 it had to run strip twice. Strip can be slow depending on a variety of factors,
92 it had to run strip twice. Strip can be slow depending on a variety of factors,
93 so you might need to be a little patient. You can choose to keep the original
93 so you might need to be a little patient. You can choose to keep the original
94 revisions by passing the ``--keep`` flag.
94 revisions by passing the ``--keep`` flag.
95
95
96 The ``edit`` operation will drop you back to a command prompt,
96 The ``edit`` operation will drop you back to a command prompt,
97 allowing you to edit files freely, or even use ``hg record`` to commit
97 allowing you to edit files freely, or even use ``hg record`` to commit
98 some changes as a separate commit. When you're done, any remaining
98 some changes as a separate commit. When you're done, any remaining
99 uncommitted changes will be committed as well. When done, run ``hg
99 uncommitted changes will be committed as well. When done, run ``hg
100 histedit --continue`` to finish this step. You'll be prompted for a
100 histedit --continue`` to finish this step. You'll be prompted for a
101 new commit message, but the default commit message will be the
101 new commit message, but the default commit message will be the
102 original message for the ``edit`` ed revision.
102 original message for the ``edit`` ed revision.
103
103
104 The ``message`` operation will give you a chance to revise a commit
104 The ``message`` operation will give you a chance to revise a commit
105 message without changing the contents. It's a shortcut for doing
105 message without changing the contents. It's a shortcut for doing
106 ``edit`` immediately followed by `hg histedit --continue``.
106 ``edit`` immediately followed by `hg histedit --continue``.
107
107
108 If ``histedit`` encounters a conflict when moving a revision (while
108 If ``histedit`` encounters a conflict when moving a revision (while
109 handling ``pick`` or ``fold``), it'll stop in a similar manner to
109 handling ``pick`` or ``fold``), it'll stop in a similar manner to
110 ``edit`` with the difference that it won't prompt you for a commit
110 ``edit`` with the difference that it won't prompt you for a commit
111 message when done. If you decide at this point that you don't like how
111 message when done. If you decide at this point that you don't like how
112 much work it will be to rearrange history, or that you made a mistake,
112 much work it will be to rearrange history, or that you made a mistake,
113 you can use ``hg histedit --abort`` to abandon the new changes you
113 you can use ``hg histedit --abort`` to abandon the new changes you
114 have made and return to the state before you attempted to edit your
114 have made and return to the state before you attempted to edit your
115 history.
115 history.
116
116
117 If we clone the histedit-ed example repository above and add four more
117 If we clone the histedit-ed example repository above and add four more
118 changes, such that we have the following history::
118 changes, such that we have the following history::
119
119
120 @ 6[tip] 038383181893 2009-04-27 18:04 -0500 stefan
120 @ 6[tip] 038383181893 2009-04-27 18:04 -0500 stefan
121 | Add theta
121 | Add theta
122 |
122 |
123 o 5 140988835471 2009-04-27 18:04 -0500 stefan
123 o 5 140988835471 2009-04-27 18:04 -0500 stefan
124 | Add eta
124 | Add eta
125 |
125 |
126 o 4 122930637314 2009-04-27 18:04 -0500 stefan
126 o 4 122930637314 2009-04-27 18:04 -0500 stefan
127 | Add zeta
127 | Add zeta
128 |
128 |
129 o 3 836302820282 2009-04-27 18:04 -0500 stefan
129 o 3 836302820282 2009-04-27 18:04 -0500 stefan
130 | Add epsilon
130 | Add epsilon
131 |
131 |
132 o 2 989b4d060121 2009-04-27 18:04 -0500 durin42
132 o 2 989b4d060121 2009-04-27 18:04 -0500 durin42
133 | Add beta and delta.
133 | Add beta and delta.
134 |
134 |
135 o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
135 o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
136 | Add gamma
136 | Add gamma
137 |
137 |
138 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
138 o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
139 Add alpha
139 Add alpha
140
140
141 If you run ``hg histedit --outgoing`` on the clone then it is the same
141 If you run ``hg histedit --outgoing`` on the clone then it is the same
142 as running ``hg histedit 836302820282``. If you need plan to push to a
142 as running ``hg histedit 836302820282``. If you need plan to push to a
143 repository that Mercurial does not detect to be related to the source
143 repository that Mercurial does not detect to be related to the source
144 repo, you can add a ``--force`` option.
144 repo, you can add a ``--force`` option.
145
145
146 Histedit rule lines are truncated to 80 characters by default. You
146 Histedit rule lines are truncated to 80 characters by default. You
147 can customize this behavior by setting a different length in your
147 can customize this behavior by setting a different length in your
148 configuration file::
148 configuration file::
149
149
150 [histedit]
150 [histedit]
151 linelen = 120 # truncate rule lines at 120 characters
151 linelen = 120 # truncate rule lines at 120 characters
152
152
153 ``hg histedit`` attempts to automatically choose an appropriate base
153 ``hg histedit`` attempts to automatically choose an appropriate base
154 revision to use. To change which base revision is used, define a
154 revision to use. To change which base revision is used, define a
155 revset in your configuration file::
155 revset in your configuration file::
156
156
157 [histedit]
157 [histedit]
158 defaultrev = only(.) & draft()
158 defaultrev = only(.) & draft()
159 """
159 """
160
160
161 try:
161 try:
162 import cPickle as pickle
162 import cPickle as pickle
163 pickle.dump # import now
163 pickle.dump # import now
164 except ImportError:
164 except ImportError:
165 import pickle
165 import pickle
166 import errno
166 import errno
167 import os
167 import os
168 import sys
168 import sys
169
169
170 from mercurial import bundle2
170 from mercurial import bundle2
171 from mercurial import cmdutil
171 from mercurial import cmdutil
172 from mercurial import discovery
172 from mercurial import discovery
173 from mercurial import error
173 from mercurial import error
174 from mercurial import copies
174 from mercurial import copies
175 from mercurial import context
175 from mercurial import context
176 from mercurial import destutil
176 from mercurial import destutil
177 from mercurial import exchange
177 from mercurial import exchange
178 from mercurial import extensions
178 from mercurial import extensions
179 from mercurial import hg
179 from mercurial import hg
180 from mercurial import node
180 from mercurial import node
181 from mercurial import repair
181 from mercurial import repair
182 from mercurial import scmutil
182 from mercurial import scmutil
183 from mercurial import util
183 from mercurial import util
184 from mercurial import obsolete
184 from mercurial import obsolete
185 from mercurial import merge as mergemod
185 from mercurial import merge as mergemod
186 from mercurial.lock import release
186 from mercurial.lock import release
187 from mercurial.i18n import _
187 from mercurial.i18n import _
188
188
189 cmdtable = {}
189 cmdtable = {}
190 command = cmdutil.command(cmdtable)
190 command = cmdutil.command(cmdtable)
191
191
192 class _constraints(object):
192 class _constraints(object):
193 # aborts if there are multiple rules for one node
193 # aborts if there are multiple rules for one node
194 noduplicates = 'noduplicates'
194 noduplicates = 'noduplicates'
195 # abort if the node does belong to edited stack
195 # abort if the node does belong to edited stack
196 forceother = 'forceother'
196 forceother = 'forceother'
197 # abort if the node doesn't belong to edited stack
197 # abort if the node doesn't belong to edited stack
198 noother = 'noother'
198 noother = 'noother'
199
199
200 @classmethod
200 @classmethod
201 def known(cls):
201 def known(cls):
202 return set([v for k, v in cls.__dict__.items() if k[0] != '_'])
202 return set([v for k, v in cls.__dict__.items() if k[0] != '_'])
203
203
204 # Note for extension authors: ONLY specify testedwith = 'internal' for
204 # Note for extension authors: ONLY specify testedwith = 'internal' for
205 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
205 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
206 # be specifying the version(s) of Mercurial they are tested with, or
206 # be specifying the version(s) of Mercurial they are tested with, or
207 # leave the attribute unspecified.
207 # leave the attribute unspecified.
208 testedwith = 'internal'
208 testedwith = 'internal'
209
209
210 # i18n: command names and abbreviations must remain untranslated
210 # i18n: command names and abbreviations must remain untranslated
211 editcomment = _("""# Edit history between %s and %s
211 editcomment = _("""# Edit history between %s and %s
212 #
212 #
213 # Commits are listed from least to most recent
213 # Commits are listed from least to most recent
214 #
214 #
215 # Commands:
215 # Commands:
216 # p, pick = use commit
216 # p, pick = use commit
217 # e, edit = use commit, but stop for amending
217 # e, edit = use commit, but stop for amending
218 # f, fold = use commit, but combine it with the one above
218 # f, fold = use commit, but combine it with the one above
219 # r, roll = like fold, but discard this commit's description
219 # r, roll = like fold, but discard this commit's description
220 # d, drop = remove commit from history
220 # d, drop = remove commit from history
221 # m, mess = edit commit message without changing commit content
221 # m, mess = edit commit message without changing commit content
222 #
222 #
223 """)
223 """)
224
224
225 class histeditstate(object):
225 class histeditstate(object):
226 def __init__(self, repo, parentctxnode=None, actions=None, keep=None,
226 def __init__(self, repo, parentctxnode=None, actions=None, keep=None,
227 topmost=None, replacements=None, lock=None, wlock=None):
227 topmost=None, replacements=None, lock=None, wlock=None):
228 self.repo = repo
228 self.repo = repo
229 self.actions = actions
229 self.actions = actions
230 self.keep = keep
230 self.keep = keep
231 self.topmost = topmost
231 self.topmost = topmost
232 self.parentctxnode = parentctxnode
232 self.parentctxnode = parentctxnode
233 self.lock = lock
233 self.lock = lock
234 self.wlock = wlock
234 self.wlock = wlock
235 self.backupfile = None
235 self.backupfile = None
236 if replacements is None:
236 if replacements is None:
237 self.replacements = []
237 self.replacements = []
238 else:
238 else:
239 self.replacements = replacements
239 self.replacements = replacements
240
240
241 def read(self):
241 def read(self):
242 """Load histedit state from disk and set fields appropriately."""
242 """Load histedit state from disk and set fields appropriately."""
243 try:
243 try:
244 fp = self.repo.vfs('histedit-state', 'r')
244 fp = self.repo.vfs('histedit-state', 'r')
245 except IOError as err:
245 except IOError as err:
246 if err.errno != errno.ENOENT:
246 if err.errno != errno.ENOENT:
247 raise
247 raise
248 raise error.Abort(_('no histedit in progress'))
248 raise error.Abort(_('no histedit in progress'))
249
249
250 try:
250 try:
251 data = pickle.load(fp)
251 data = pickle.load(fp)
252 parentctxnode, rules, keep, topmost, replacements = data
252 parentctxnode, rules, keep, topmost, replacements = data
253 backupfile = None
253 backupfile = None
254 except pickle.UnpicklingError:
254 except pickle.UnpicklingError:
255 data = self._load()
255 data = self._load()
256 parentctxnode, rules, keep, topmost, replacements, backupfile = data
256 parentctxnode, rules, keep, topmost, replacements, backupfile = data
257
257
258 self.parentctxnode = parentctxnode
258 self.parentctxnode = parentctxnode
259 rules = "\n".join(["%s %s" % (verb, rest) for [verb, rest] in rules])
259 rules = "\n".join(["%s %s" % (verb, rest) for [verb, rest] in rules])
260 actions = parserules(rules, self)
260 actions = parserules(rules, self)
261 self.actions = actions
261 self.actions = actions
262 self.keep = keep
262 self.keep = keep
263 self.topmost = topmost
263 self.topmost = topmost
264 self.replacements = replacements
264 self.replacements = replacements
265 self.backupfile = backupfile
265 self.backupfile = backupfile
266
266
267 def write(self):
267 def write(self):
268 fp = self.repo.vfs('histedit-state', 'w')
268 fp = self.repo.vfs('histedit-state', 'w')
269 fp.write('v1\n')
269 fp.write('v1\n')
270 fp.write('%s\n' % node.hex(self.parentctxnode))
270 fp.write('%s\n' % node.hex(self.parentctxnode))
271 fp.write('%s\n' % node.hex(self.topmost))
271 fp.write('%s\n' % node.hex(self.topmost))
272 fp.write('%s\n' % self.keep)
272 fp.write('%s\n' % self.keep)
273 fp.write('%d\n' % len(self.actions))
273 fp.write('%d\n' % len(self.actions))
274 for action in self.actions:
274 for action in self.actions:
275 fp.write('%s\n' % action.tostate())
275 fp.write('%s\n' % action.tostate())
276 fp.write('%d\n' % len(self.replacements))
276 fp.write('%d\n' % len(self.replacements))
277 for replacement in self.replacements:
277 for replacement in self.replacements:
278 fp.write('%s%s\n' % (node.hex(replacement[0]), ''.join(node.hex(r)
278 fp.write('%s%s\n' % (node.hex(replacement[0]), ''.join(node.hex(r)
279 for r in replacement[1])))
279 for r in replacement[1])))
280 backupfile = self.backupfile
280 backupfile = self.backupfile
281 if not backupfile:
281 if not backupfile:
282 backupfile = ''
282 backupfile = ''
283 fp.write('%s\n' % backupfile)
283 fp.write('%s\n' % backupfile)
284 fp.close()
284 fp.close()
285
285
286 def _load(self):
286 def _load(self):
287 fp = self.repo.vfs('histedit-state', 'r')
287 fp = self.repo.vfs('histedit-state', 'r')
288 lines = [l[:-1] for l in fp.readlines()]
288 lines = [l[:-1] for l in fp.readlines()]
289
289
290 index = 0
290 index = 0
291 lines[index] # version number
291 lines[index] # version number
292 index += 1
292 index += 1
293
293
294 parentctxnode = node.bin(lines[index])
294 parentctxnode = node.bin(lines[index])
295 index += 1
295 index += 1
296
296
297 topmost = node.bin(lines[index])
297 topmost = node.bin(lines[index])
298 index += 1
298 index += 1
299
299
300 keep = lines[index] == 'True'
300 keep = lines[index] == 'True'
301 index += 1
301 index += 1
302
302
303 # Rules
303 # Rules
304 rules = []
304 rules = []
305 rulelen = int(lines[index])
305 rulelen = int(lines[index])
306 index += 1
306 index += 1
307 for i in xrange(rulelen):
307 for i in xrange(rulelen):
308 ruleaction = lines[index]
308 ruleaction = lines[index]
309 index += 1
309 index += 1
310 rule = lines[index]
310 rule = lines[index]
311 index += 1
311 index += 1
312 rules.append((ruleaction, rule))
312 rules.append((ruleaction, rule))
313
313
314 # Replacements
314 # Replacements
315 replacements = []
315 replacements = []
316 replacementlen = int(lines[index])
316 replacementlen = int(lines[index])
317 index += 1
317 index += 1
318 for i in xrange(replacementlen):
318 for i in xrange(replacementlen):
319 replacement = lines[index]
319 replacement = lines[index]
320 original = node.bin(replacement[:40])
320 original = node.bin(replacement[:40])
321 succ = [node.bin(replacement[i:i + 40]) for i in
321 succ = [node.bin(replacement[i:i + 40]) for i in
322 range(40, len(replacement), 40)]
322 range(40, len(replacement), 40)]
323 replacements.append((original, succ))
323 replacements.append((original, succ))
324 index += 1
324 index += 1
325
325
326 backupfile = lines[index]
326 backupfile = lines[index]
327 index += 1
327 index += 1
328
328
329 fp.close()
329 fp.close()
330
330
331 return parentctxnode, rules, keep, topmost, replacements, backupfile
331 return parentctxnode, rules, keep, topmost, replacements, backupfile
332
332
333 def clear(self):
333 def clear(self):
334 if self.inprogress():
334 if self.inprogress():
335 self.repo.vfs.unlink('histedit-state')
335 self.repo.vfs.unlink('histedit-state')
336
336
337 def inprogress(self):
337 def inprogress(self):
338 return self.repo.vfs.exists('histedit-state')
338 return self.repo.vfs.exists('histedit-state')
339
339
340
340
341 class histeditaction(object):
341 class histeditaction(object):
342 def __init__(self, state, node):
342 def __init__(self, state, node):
343 self.state = state
343 self.state = state
344 self.repo = state.repo
344 self.repo = state.repo
345 self.node = node
345 self.node = node
346
346
347 @classmethod
347 @classmethod
348 def fromrule(cls, state, rule):
348 def fromrule(cls, state, rule):
349 """Parses the given rule, returning an instance of the histeditaction.
349 """Parses the given rule, returning an instance of the histeditaction.
350 """
350 """
351 rulehash = rule.strip().split(' ', 1)[0]
351 rulehash = rule.strip().split(' ', 1)[0]
352 return cls(state, node.bin(rulehash))
352 return cls(state, node.bin(rulehash))
353
353
354 def verify(self):
354 def verify(self):
355 """ Verifies semantic correctness of the rule"""
355 """ Verifies semantic correctness of the rule"""
356 repo = self.repo
356 repo = self.repo
357 ha = node.hex(self.node)
357 ha = node.hex(self.node)
358 try:
358 try:
359 self.node = repo[ha].node()
359 self.node = repo[ha].node()
360 except error.RepoError:
360 except error.RepoError:
361 raise error.Abort(_('unknown changeset %s listed')
361 raise error.Abort(_('unknown changeset %s listed')
362 % ha[:12])
362 % ha[:12])
363
363
364 def torule(self):
364 def torule(self):
365 """build a histedit rule line for an action
365 """build a histedit rule line for an action
366
366
367 by default lines are in the form:
367 by default lines are in the form:
368 <hash> <rev> <summary>
368 <hash> <rev> <summary>
369 """
369 """
370 ctx = self.repo[self.node]
370 ctx = self.repo[self.node]
371 summary = ''
371 summary = ''
372 if ctx.description():
372 if ctx.description():
373 summary = ctx.description().splitlines()[0]
373 summary = ctx.description().splitlines()[0]
374 line = '%s %s %d %s' % (self.verb, ctx, ctx.rev(), summary)
374 line = '%s %s %d %s' % (self.verb, ctx, ctx.rev(), summary)
375 # trim to 75 columns by default so it's not stupidly wide in my editor
375 # trim to 75 columns by default so it's not stupidly wide in my editor
376 # (the 5 more are left for verb)
376 # (the 5 more are left for verb)
377 maxlen = self.repo.ui.configint('histedit', 'linelen', default=80)
377 maxlen = self.repo.ui.configint('histedit', 'linelen', default=80)
378 maxlen = max(maxlen, 22) # avoid truncating hash
378 maxlen = max(maxlen, 22) # avoid truncating hash
379 return util.ellipsis(line, maxlen)
379 return util.ellipsis(line, maxlen)
380
380
381 def tostate(self):
381 def tostate(self):
382 """Print an action in format used by histedit state files
382 """Print an action in format used by histedit state files
383 (the first line is a verb, the remainder is the second)
383 (the first line is a verb, the remainder is the second)
384 """
384 """
385 return "%s\n%s" % (self.verb, node.hex(self.node))
385 return "%s\n%s" % (self.verb, node.hex(self.node))
386
386
387 def constraints(self):
387 def constraints(self):
388 """Return a set of constrains that this action should be verified for
388 """Return a set of constrains that this action should be verified for
389 """
389 """
390 return set([_constraints.noduplicates, _constraints.noother])
390 return set([_constraints.noduplicates, _constraints.noother])
391
391
392 def nodetoverify(self):
392 def nodetoverify(self):
393 """Returns a node associated with the action that will be used for
393 """Returns a node associated with the action that will be used for
394 verification purposes.
394 verification purposes.
395
395
396 If the action doesn't correspond to node it should return None
396 If the action doesn't correspond to node it should return None
397 """
397 """
398 return self.node
398 return self.node
399
399
400 def run(self):
400 def run(self):
401 """Runs the action. The default behavior is simply apply the action's
401 """Runs the action. The default behavior is simply apply the action's
402 rulectx onto the current parentctx."""
402 rulectx onto the current parentctx."""
403 self.applychange()
403 self.applychange()
404 self.continuedirty()
404 self.continuedirty()
405 return self.continueclean()
405 return self.continueclean()
406
406
407 def applychange(self):
407 def applychange(self):
408 """Applies the changes from this action's rulectx onto the current
408 """Applies the changes from this action's rulectx onto the current
409 parentctx, but does not commit them."""
409 parentctx, but does not commit them."""
410 repo = self.repo
410 repo = self.repo
411 rulectx = repo[self.node]
411 rulectx = repo[self.node]
412 hg.update(repo, self.state.parentctxnode)
412 hg.update(repo, self.state.parentctxnode, quietempty=True)
413 stats = applychanges(repo.ui, repo, rulectx, {})
413 stats = applychanges(repo.ui, repo, rulectx, {})
414 if stats and stats[3] > 0:
414 if stats and stats[3] > 0:
415 raise error.InterventionRequired(_('Fix up the change and run '
415 raise error.InterventionRequired(_('Fix up the change and run '
416 'hg histedit --continue'))
416 'hg histedit --continue'))
417
417
418 def continuedirty(self):
418 def continuedirty(self):
419 """Continues the action when changes have been applied to the working
419 """Continues the action when changes have been applied to the working
420 copy. The default behavior is to commit the dirty changes."""
420 copy. The default behavior is to commit the dirty changes."""
421 repo = self.repo
421 repo = self.repo
422 rulectx = repo[self.node]
422 rulectx = repo[self.node]
423
423
424 editor = self.commiteditor()
424 editor = self.commiteditor()
425 commit = commitfuncfor(repo, rulectx)
425 commit = commitfuncfor(repo, rulectx)
426
426
427 commit(text=rulectx.description(), user=rulectx.user(),
427 commit(text=rulectx.description(), user=rulectx.user(),
428 date=rulectx.date(), extra=rulectx.extra(), editor=editor)
428 date=rulectx.date(), extra=rulectx.extra(), editor=editor)
429
429
430 def commiteditor(self):
430 def commiteditor(self):
431 """The editor to be used to edit the commit message."""
431 """The editor to be used to edit the commit message."""
432 return False
432 return False
433
433
434 def continueclean(self):
434 def continueclean(self):
435 """Continues the action when the working copy is clean. The default
435 """Continues the action when the working copy is clean. The default
436 behavior is to accept the current commit as the new version of the
436 behavior is to accept the current commit as the new version of the
437 rulectx."""
437 rulectx."""
438 ctx = self.repo['.']
438 ctx = self.repo['.']
439 if ctx.node() == self.state.parentctxnode:
439 if ctx.node() == self.state.parentctxnode:
440 self.repo.ui.warn(_('%s: empty changeset\n') %
440 self.repo.ui.warn(_('%s: empty changeset\n') %
441 node.short(self.node))
441 node.short(self.node))
442 return ctx, [(self.node, tuple())]
442 return ctx, [(self.node, tuple())]
443 if ctx.node() == self.node:
443 if ctx.node() == self.node:
444 # Nothing changed
444 # Nothing changed
445 return ctx, []
445 return ctx, []
446 return ctx, [(self.node, (ctx.node(),))]
446 return ctx, [(self.node, (ctx.node(),))]
447
447
448 def commitfuncfor(repo, src):
448 def commitfuncfor(repo, src):
449 """Build a commit function for the replacement of <src>
449 """Build a commit function for the replacement of <src>
450
450
451 This function ensure we apply the same treatment to all changesets.
451 This function ensure we apply the same treatment to all changesets.
452
452
453 - Add a 'histedit_source' entry in extra.
453 - Add a 'histedit_source' entry in extra.
454
454
455 Note that fold has its own separated logic because its handling is a bit
455 Note that fold has its own separated logic because its handling is a bit
456 different and not easily factored out of the fold method.
456 different and not easily factored out of the fold method.
457 """
457 """
458 phasemin = src.phase()
458 phasemin = src.phase()
459 def commitfunc(**kwargs):
459 def commitfunc(**kwargs):
460 phasebackup = repo.ui.backupconfig('phases', 'new-commit')
460 phasebackup = repo.ui.backupconfig('phases', 'new-commit')
461 try:
461 try:
462 repo.ui.setconfig('phases', 'new-commit', phasemin,
462 repo.ui.setconfig('phases', 'new-commit', phasemin,
463 'histedit')
463 'histedit')
464 extra = kwargs.get('extra', {}).copy()
464 extra = kwargs.get('extra', {}).copy()
465 extra['histedit_source'] = src.hex()
465 extra['histedit_source'] = src.hex()
466 kwargs['extra'] = extra
466 kwargs['extra'] = extra
467 return repo.commit(**kwargs)
467 return repo.commit(**kwargs)
468 finally:
468 finally:
469 repo.ui.restoreconfig(phasebackup)
469 repo.ui.restoreconfig(phasebackup)
470 return commitfunc
470 return commitfunc
471
471
472 def applychanges(ui, repo, ctx, opts):
472 def applychanges(ui, repo, ctx, opts):
473 """Merge changeset from ctx (only) in the current working directory"""
473 """Merge changeset from ctx (only) in the current working directory"""
474 wcpar = repo.dirstate.parents()[0]
474 wcpar = repo.dirstate.parents()[0]
475 if ctx.p1().node() == wcpar:
475 if ctx.p1().node() == wcpar:
476 # edits are "in place" we do not need to make any merge,
476 # edits are "in place" we do not need to make any merge,
477 # just applies changes on parent for edition
477 # just applies changes on parent for edition
478 cmdutil.revert(ui, repo, ctx, (wcpar, node.nullid), all=True)
478 cmdutil.revert(ui, repo, ctx, (wcpar, node.nullid), all=True)
479 stats = None
479 stats = None
480 else:
480 else:
481 try:
481 try:
482 # ui.forcemerge is an internal variable, do not document
482 # ui.forcemerge is an internal variable, do not document
483 repo.ui.setconfig('ui', 'forcemerge', opts.get('tool', ''),
483 repo.ui.setconfig('ui', 'forcemerge', opts.get('tool', ''),
484 'histedit')
484 'histedit')
485 stats = mergemod.graft(repo, ctx, ctx.p1(), ['local', 'histedit'])
485 stats = mergemod.graft(repo, ctx, ctx.p1(), ['local', 'histedit'])
486 finally:
486 finally:
487 repo.ui.setconfig('ui', 'forcemerge', '', 'histedit')
487 repo.ui.setconfig('ui', 'forcemerge', '', 'histedit')
488 return stats
488 return stats
489
489
490 def collapse(repo, first, last, commitopts, skipprompt=False):
490 def collapse(repo, first, last, commitopts, skipprompt=False):
491 """collapse the set of revisions from first to last as new one.
491 """collapse the set of revisions from first to last as new one.
492
492
493 Expected commit options are:
493 Expected commit options are:
494 - message
494 - message
495 - date
495 - date
496 - username
496 - username
497 Commit message is edited in all cases.
497 Commit message is edited in all cases.
498
498
499 This function works in memory."""
499 This function works in memory."""
500 ctxs = list(repo.set('%d::%d', first, last))
500 ctxs = list(repo.set('%d::%d', first, last))
501 if not ctxs:
501 if not ctxs:
502 return None
502 return None
503 for c in ctxs:
503 for c in ctxs:
504 if not c.mutable():
504 if not c.mutable():
505 raise error.Abort(
505 raise error.Abort(
506 _("cannot fold into public change %s") % node.short(c.node()))
506 _("cannot fold into public change %s") % node.short(c.node()))
507 base = first.parents()[0]
507 base = first.parents()[0]
508
508
509 # commit a new version of the old changeset, including the update
509 # commit a new version of the old changeset, including the update
510 # collect all files which might be affected
510 # collect all files which might be affected
511 files = set()
511 files = set()
512 for ctx in ctxs:
512 for ctx in ctxs:
513 files.update(ctx.files())
513 files.update(ctx.files())
514
514
515 # Recompute copies (avoid recording a -> b -> a)
515 # Recompute copies (avoid recording a -> b -> a)
516 copied = copies.pathcopies(base, last)
516 copied = copies.pathcopies(base, last)
517
517
518 # prune files which were reverted by the updates
518 # prune files which were reverted by the updates
519 def samefile(f):
519 def samefile(f):
520 if f in last.manifest():
520 if f in last.manifest():
521 a = last.filectx(f)
521 a = last.filectx(f)
522 if f in base.manifest():
522 if f in base.manifest():
523 b = base.filectx(f)
523 b = base.filectx(f)
524 return (a.data() == b.data()
524 return (a.data() == b.data()
525 and a.flags() == b.flags())
525 and a.flags() == b.flags())
526 else:
526 else:
527 return False
527 return False
528 else:
528 else:
529 return f not in base.manifest()
529 return f not in base.manifest()
530 files = [f for f in files if not samefile(f)]
530 files = [f for f in files if not samefile(f)]
531 # commit version of these files as defined by head
531 # commit version of these files as defined by head
532 headmf = last.manifest()
532 headmf = last.manifest()
533 def filectxfn(repo, ctx, path):
533 def filectxfn(repo, ctx, path):
534 if path in headmf:
534 if path in headmf:
535 fctx = last[path]
535 fctx = last[path]
536 flags = fctx.flags()
536 flags = fctx.flags()
537 mctx = context.memfilectx(repo,
537 mctx = context.memfilectx(repo,
538 fctx.path(), fctx.data(),
538 fctx.path(), fctx.data(),
539 islink='l' in flags,
539 islink='l' in flags,
540 isexec='x' in flags,
540 isexec='x' in flags,
541 copied=copied.get(path))
541 copied=copied.get(path))
542 return mctx
542 return mctx
543 return None
543 return None
544
544
545 if commitopts.get('message'):
545 if commitopts.get('message'):
546 message = commitopts['message']
546 message = commitopts['message']
547 else:
547 else:
548 message = first.description()
548 message = first.description()
549 user = commitopts.get('user')
549 user = commitopts.get('user')
550 date = commitopts.get('date')
550 date = commitopts.get('date')
551 extra = commitopts.get('extra')
551 extra = commitopts.get('extra')
552
552
553 parents = (first.p1().node(), first.p2().node())
553 parents = (first.p1().node(), first.p2().node())
554 editor = None
554 editor = None
555 if not skipprompt:
555 if not skipprompt:
556 editor = cmdutil.getcommiteditor(edit=True, editform='histedit.fold')
556 editor = cmdutil.getcommiteditor(edit=True, editform='histedit.fold')
557 new = context.memctx(repo,
557 new = context.memctx(repo,
558 parents=parents,
558 parents=parents,
559 text=message,
559 text=message,
560 files=files,
560 files=files,
561 filectxfn=filectxfn,
561 filectxfn=filectxfn,
562 user=user,
562 user=user,
563 date=date,
563 date=date,
564 extra=extra,
564 extra=extra,
565 editor=editor)
565 editor=editor)
566 return repo.commitctx(new)
566 return repo.commitctx(new)
567
567
568 def _isdirtywc(repo):
568 def _isdirtywc(repo):
569 return repo[None].dirty(missing=True)
569 return repo[None].dirty(missing=True)
570
570
571 def abortdirty():
571 def abortdirty():
572 raise error.Abort(_('working copy has pending changes'),
572 raise error.Abort(_('working copy has pending changes'),
573 hint=_('amend, commit, or revert them and run histedit '
573 hint=_('amend, commit, or revert them and run histedit '
574 '--continue, or abort with histedit --abort'))
574 '--continue, or abort with histedit --abort'))
575
575
576
576
577 actiontable = {}
577 actiontable = {}
578 actionlist = []
578 actionlist = []
579
579
580 def addhisteditaction(verbs):
580 def addhisteditaction(verbs):
581 def wrap(cls):
581 def wrap(cls):
582 cls.verb = verbs[0]
582 cls.verb = verbs[0]
583 for verb in verbs:
583 for verb in verbs:
584 actiontable[verb] = cls
584 actiontable[verb] = cls
585 actionlist.append(cls)
585 actionlist.append(cls)
586 return cls
586 return cls
587 return wrap
587 return wrap
588
588
589
589
590 @addhisteditaction(['pick', 'p'])
590 @addhisteditaction(['pick', 'p'])
591 class pick(histeditaction):
591 class pick(histeditaction):
592 def run(self):
592 def run(self):
593 rulectx = self.repo[self.node]
593 rulectx = self.repo[self.node]
594 if rulectx.parents()[0].node() == self.state.parentctxnode:
594 if rulectx.parents()[0].node() == self.state.parentctxnode:
595 self.repo.ui.debug('node %s unchanged\n' % node.short(self.node))
595 self.repo.ui.debug('node %s unchanged\n' % node.short(self.node))
596 return rulectx, []
596 return rulectx, []
597
597
598 return super(pick, self).run()
598 return super(pick, self).run()
599
599
600 @addhisteditaction(['edit', 'e'])
600 @addhisteditaction(['edit', 'e'])
601 class edit(histeditaction):
601 class edit(histeditaction):
602 def run(self):
602 def run(self):
603 repo = self.repo
603 repo = self.repo
604 rulectx = repo[self.node]
604 rulectx = repo[self.node]
605 hg.update(repo, self.state.parentctxnode)
605 hg.update(repo, self.state.parentctxnode)
606 applychanges(repo.ui, repo, rulectx, {})
606 applychanges(repo.ui, repo, rulectx, {})
607 raise error.InterventionRequired(
607 raise error.InterventionRequired(
608 _('Make changes as needed, you may commit or record as needed '
608 _('Make changes as needed, you may commit or record as needed '
609 'now.\nWhen you are finished, run hg histedit --continue to '
609 'now.\nWhen you are finished, run hg histedit --continue to '
610 'resume.'))
610 'resume.'))
611
611
612 def commiteditor(self):
612 def commiteditor(self):
613 return cmdutil.getcommiteditor(edit=True, editform='histedit.edit')
613 return cmdutil.getcommiteditor(edit=True, editform='histedit.edit')
614
614
615 @addhisteditaction(['fold', 'f'])
615 @addhisteditaction(['fold', 'f'])
616 class fold(histeditaction):
616 class fold(histeditaction):
617 def continuedirty(self):
617 def continuedirty(self):
618 repo = self.repo
618 repo = self.repo
619 rulectx = repo[self.node]
619 rulectx = repo[self.node]
620
620
621 commit = commitfuncfor(repo, rulectx)
621 commit = commitfuncfor(repo, rulectx)
622 commit(text='fold-temp-revision %s' % node.short(self.node),
622 commit(text='fold-temp-revision %s' % node.short(self.node),
623 user=rulectx.user(), date=rulectx.date(),
623 user=rulectx.user(), date=rulectx.date(),
624 extra=rulectx.extra())
624 extra=rulectx.extra())
625
625
626 def continueclean(self):
626 def continueclean(self):
627 repo = self.repo
627 repo = self.repo
628 ctx = repo['.']
628 ctx = repo['.']
629 rulectx = repo[self.node]
629 rulectx = repo[self.node]
630 parentctxnode = self.state.parentctxnode
630 parentctxnode = self.state.parentctxnode
631 if ctx.node() == parentctxnode:
631 if ctx.node() == parentctxnode:
632 repo.ui.warn(_('%s: empty changeset\n') %
632 repo.ui.warn(_('%s: empty changeset\n') %
633 node.short(self.node))
633 node.short(self.node))
634 return ctx, [(self.node, (parentctxnode,))]
634 return ctx, [(self.node, (parentctxnode,))]
635
635
636 parentctx = repo[parentctxnode]
636 parentctx = repo[parentctxnode]
637 newcommits = set(c.node() for c in repo.set('(%d::. - %d)', parentctx,
637 newcommits = set(c.node() for c in repo.set('(%d::. - %d)', parentctx,
638 parentctx))
638 parentctx))
639 if not newcommits:
639 if not newcommits:
640 repo.ui.warn(_('%s: cannot fold - working copy is not a '
640 repo.ui.warn(_('%s: cannot fold - working copy is not a '
641 'descendant of previous commit %s\n') %
641 'descendant of previous commit %s\n') %
642 (node.short(self.node), node.short(parentctxnode)))
642 (node.short(self.node), node.short(parentctxnode)))
643 return ctx, [(self.node, (ctx.node(),))]
643 return ctx, [(self.node, (ctx.node(),))]
644
644
645 middlecommits = newcommits.copy()
645 middlecommits = newcommits.copy()
646 middlecommits.discard(ctx.node())
646 middlecommits.discard(ctx.node())
647
647
648 return self.finishfold(repo.ui, repo, parentctx, rulectx, ctx.node(),
648 return self.finishfold(repo.ui, repo, parentctx, rulectx, ctx.node(),
649 middlecommits)
649 middlecommits)
650
650
651 def skipprompt(self):
651 def skipprompt(self):
652 """Returns true if the rule should skip the message editor.
652 """Returns true if the rule should skip the message editor.
653
653
654 For example, 'fold' wants to show an editor, but 'rollup'
654 For example, 'fold' wants to show an editor, but 'rollup'
655 doesn't want to.
655 doesn't want to.
656 """
656 """
657 return False
657 return False
658
658
659 def mergedescs(self):
659 def mergedescs(self):
660 """Returns true if the rule should merge messages of multiple changes.
660 """Returns true if the rule should merge messages of multiple changes.
661
661
662 This exists mainly so that 'rollup' rules can be a subclass of
662 This exists mainly so that 'rollup' rules can be a subclass of
663 'fold'.
663 'fold'.
664 """
664 """
665 return True
665 return True
666
666
667 def finishfold(self, ui, repo, ctx, oldctx, newnode, internalchanges):
667 def finishfold(self, ui, repo, ctx, oldctx, newnode, internalchanges):
668 parent = ctx.parents()[0].node()
668 parent = ctx.parents()[0].node()
669 hg.update(repo, parent)
669 hg.update(repo, parent)
670 ### prepare new commit data
670 ### prepare new commit data
671 commitopts = {}
671 commitopts = {}
672 commitopts['user'] = ctx.user()
672 commitopts['user'] = ctx.user()
673 # commit message
673 # commit message
674 if not self.mergedescs():
674 if not self.mergedescs():
675 newmessage = ctx.description()
675 newmessage = ctx.description()
676 else:
676 else:
677 newmessage = '\n***\n'.join(
677 newmessage = '\n***\n'.join(
678 [ctx.description()] +
678 [ctx.description()] +
679 [repo[r].description() for r in internalchanges] +
679 [repo[r].description() for r in internalchanges] +
680 [oldctx.description()]) + '\n'
680 [oldctx.description()]) + '\n'
681 commitopts['message'] = newmessage
681 commitopts['message'] = newmessage
682 # date
682 # date
683 commitopts['date'] = max(ctx.date(), oldctx.date())
683 commitopts['date'] = max(ctx.date(), oldctx.date())
684 extra = ctx.extra().copy()
684 extra = ctx.extra().copy()
685 # histedit_source
685 # histedit_source
686 # note: ctx is likely a temporary commit but that the best we can do
686 # note: ctx is likely a temporary commit but that the best we can do
687 # here. This is sufficient to solve issue3681 anyway.
687 # here. This is sufficient to solve issue3681 anyway.
688 extra['histedit_source'] = '%s,%s' % (ctx.hex(), oldctx.hex())
688 extra['histedit_source'] = '%s,%s' % (ctx.hex(), oldctx.hex())
689 commitopts['extra'] = extra
689 commitopts['extra'] = extra
690 phasebackup = repo.ui.backupconfig('phases', 'new-commit')
690 phasebackup = repo.ui.backupconfig('phases', 'new-commit')
691 try:
691 try:
692 phasemin = max(ctx.phase(), oldctx.phase())
692 phasemin = max(ctx.phase(), oldctx.phase())
693 repo.ui.setconfig('phases', 'new-commit', phasemin, 'histedit')
693 repo.ui.setconfig('phases', 'new-commit', phasemin, 'histedit')
694 n = collapse(repo, ctx, repo[newnode], commitopts,
694 n = collapse(repo, ctx, repo[newnode], commitopts,
695 skipprompt=self.skipprompt())
695 skipprompt=self.skipprompt())
696 finally:
696 finally:
697 repo.ui.restoreconfig(phasebackup)
697 repo.ui.restoreconfig(phasebackup)
698 if n is None:
698 if n is None:
699 return ctx, []
699 return ctx, []
700 hg.update(repo, n)
700 hg.update(repo, n)
701 replacements = [(oldctx.node(), (newnode,)),
701 replacements = [(oldctx.node(), (newnode,)),
702 (ctx.node(), (n,)),
702 (ctx.node(), (n,)),
703 (newnode, (n,)),
703 (newnode, (n,)),
704 ]
704 ]
705 for ich in internalchanges:
705 for ich in internalchanges:
706 replacements.append((ich, (n,)))
706 replacements.append((ich, (n,)))
707 return repo[n], replacements
707 return repo[n], replacements
708
708
709 class base(histeditaction):
709 class base(histeditaction):
710 def constraints(self):
710 def constraints(self):
711 return set([_constraints.forceother])
711 return set([_constraints.forceother])
712
712
713 def run(self):
713 def run(self):
714 if self.repo['.'].node() != self.node:
714 if self.repo['.'].node() != self.node:
715 mergemod.update(self.repo, self.node, False, True)
715 mergemod.update(self.repo, self.node, False, True)
716 # branchmerge, force)
716 # branchmerge, force)
717 return self.continueclean()
717 return self.continueclean()
718
718
719 def continuedirty(self):
719 def continuedirty(self):
720 abortdirty()
720 abortdirty()
721
721
722 def continueclean(self):
722 def continueclean(self):
723 basectx = self.repo['.']
723 basectx = self.repo['.']
724 return basectx, []
724 return basectx, []
725
725
726 @addhisteditaction(['_multifold'])
726 @addhisteditaction(['_multifold'])
727 class _multifold(fold):
727 class _multifold(fold):
728 """fold subclass used for when multiple folds happen in a row
728 """fold subclass used for when multiple folds happen in a row
729
729
730 We only want to fire the editor for the folded message once when
730 We only want to fire the editor for the folded message once when
731 (say) four changes are folded down into a single change. This is
731 (say) four changes are folded down into a single change. This is
732 similar to rollup, but we should preserve both messages so that
732 similar to rollup, but we should preserve both messages so that
733 when the last fold operation runs we can show the user all the
733 when the last fold operation runs we can show the user all the
734 commit messages in their editor.
734 commit messages in their editor.
735 """
735 """
736 def skipprompt(self):
736 def skipprompt(self):
737 return True
737 return True
738
738
739 @addhisteditaction(["roll", "r"])
739 @addhisteditaction(["roll", "r"])
740 class rollup(fold):
740 class rollup(fold):
741 def mergedescs(self):
741 def mergedescs(self):
742 return False
742 return False
743
743
744 def skipprompt(self):
744 def skipprompt(self):
745 return True
745 return True
746
746
747 @addhisteditaction(["drop", "d"])
747 @addhisteditaction(["drop", "d"])
748 class drop(histeditaction):
748 class drop(histeditaction):
749 def run(self):
749 def run(self):
750 parentctx = self.repo[self.state.parentctxnode]
750 parentctx = self.repo[self.state.parentctxnode]
751 return parentctx, [(self.node, tuple())]
751 return parentctx, [(self.node, tuple())]
752
752
753 @addhisteditaction(["mess", "m"])
753 @addhisteditaction(["mess", "m"])
754 class message(histeditaction):
754 class message(histeditaction):
755 def commiteditor(self):
755 def commiteditor(self):
756 return cmdutil.getcommiteditor(edit=True, editform='histedit.mess')
756 return cmdutil.getcommiteditor(edit=True, editform='histedit.mess')
757
757
758 def findoutgoing(ui, repo, remote=None, force=False, opts=None):
758 def findoutgoing(ui, repo, remote=None, force=False, opts=None):
759 """utility function to find the first outgoing changeset
759 """utility function to find the first outgoing changeset
760
760
761 Used by initialization code"""
761 Used by initialization code"""
762 if opts is None:
762 if opts is None:
763 opts = {}
763 opts = {}
764 dest = ui.expandpath(remote or 'default-push', remote or 'default')
764 dest = ui.expandpath(remote or 'default-push', remote or 'default')
765 dest, revs = hg.parseurl(dest, None)[:2]
765 dest, revs = hg.parseurl(dest, None)[:2]
766 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
766 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
767
767
768 revs, checkout = hg.addbranchrevs(repo, repo, revs, None)
768 revs, checkout = hg.addbranchrevs(repo, repo, revs, None)
769 other = hg.peer(repo, opts, dest)
769 other = hg.peer(repo, opts, dest)
770
770
771 if revs:
771 if revs:
772 revs = [repo.lookup(rev) for rev in revs]
772 revs = [repo.lookup(rev) for rev in revs]
773
773
774 outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force)
774 outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force)
775 if not outgoing.missing:
775 if not outgoing.missing:
776 raise error.Abort(_('no outgoing ancestors'))
776 raise error.Abort(_('no outgoing ancestors'))
777 roots = list(repo.revs("roots(%ln)", outgoing.missing))
777 roots = list(repo.revs("roots(%ln)", outgoing.missing))
778 if 1 < len(roots):
778 if 1 < len(roots):
779 msg = _('there are ambiguous outgoing revisions')
779 msg = _('there are ambiguous outgoing revisions')
780 hint = _('see "hg help histedit" for more detail')
780 hint = _('see "hg help histedit" for more detail')
781 raise error.Abort(msg, hint=hint)
781 raise error.Abort(msg, hint=hint)
782 return repo.lookup(roots[0])
782 return repo.lookup(roots[0])
783
783
784
784
785 @command('histedit',
785 @command('histedit',
786 [('', 'commands', '',
786 [('', 'commands', '',
787 _('read history edits from the specified file'), _('FILE')),
787 _('read history edits from the specified file'), _('FILE')),
788 ('c', 'continue', False, _('continue an edit already in progress')),
788 ('c', 'continue', False, _('continue an edit already in progress')),
789 ('', 'edit-plan', False, _('edit remaining actions list')),
789 ('', 'edit-plan', False, _('edit remaining actions list')),
790 ('k', 'keep', False,
790 ('k', 'keep', False,
791 _("don't strip old nodes after edit is complete")),
791 _("don't strip old nodes after edit is complete")),
792 ('', 'abort', False, _('abort an edit in progress')),
792 ('', 'abort', False, _('abort an edit in progress')),
793 ('o', 'outgoing', False, _('changesets not found in destination')),
793 ('o', 'outgoing', False, _('changesets not found in destination')),
794 ('f', 'force', False,
794 ('f', 'force', False,
795 _('force outgoing even for unrelated repositories')),
795 _('force outgoing even for unrelated repositories')),
796 ('r', 'rev', [], _('first revision to be edited'), _('REV'))],
796 ('r', 'rev', [], _('first revision to be edited'), _('REV'))],
797 _("[ANCESTOR] | --outgoing [URL]"))
797 _("[ANCESTOR] | --outgoing [URL]"))
798 def histedit(ui, repo, *freeargs, **opts):
798 def histedit(ui, repo, *freeargs, **opts):
799 """interactively edit changeset history
799 """interactively edit changeset history
800
800
801 This command edits changesets between an ANCESTOR and the parent of
801 This command edits changesets between an ANCESTOR and the parent of
802 the working directory.
802 the working directory.
803
803
804 The value from the "histedit.defaultrev" config option is used as a
804 The value from the "histedit.defaultrev" config option is used as a
805 revset to select the base revision when ANCESTOR is not specified.
805 revset to select the base revision when ANCESTOR is not specified.
806 The first revision returned by the revset is used. By default, this
806 The first revision returned by the revset is used. By default, this
807 selects the editable history that is unique to the ancestry of the
807 selects the editable history that is unique to the ancestry of the
808 working directory.
808 working directory.
809
809
810 With --outgoing, this edits changesets not found in the
810 With --outgoing, this edits changesets not found in the
811 destination repository. If URL of the destination is omitted, the
811 destination repository. If URL of the destination is omitted, the
812 'default-push' (or 'default') path will be used.
812 'default-push' (or 'default') path will be used.
813
813
814 For safety, this command is also aborted if there are ambiguous
814 For safety, this command is also aborted if there are ambiguous
815 outgoing revisions which may confuse users: for example, if there
815 outgoing revisions which may confuse users: for example, if there
816 are multiple branches containing outgoing revisions.
816 are multiple branches containing outgoing revisions.
817
817
818 Use "min(outgoing() and ::.)" or similar revset specification
818 Use "min(outgoing() and ::.)" or similar revset specification
819 instead of --outgoing to specify edit target revision exactly in
819 instead of --outgoing to specify edit target revision exactly in
820 such ambiguous situation. See :hg:`help revsets` for detail about
820 such ambiguous situation. See :hg:`help revsets` for detail about
821 selecting revisions.
821 selecting revisions.
822
822
823 .. container:: verbose
823 .. container:: verbose
824
824
825 Examples:
825 Examples:
826
826
827 - A number of changes have been made.
827 - A number of changes have been made.
828 Revision 3 is no longer needed.
828 Revision 3 is no longer needed.
829
829
830 Start history editing from revision 3::
830 Start history editing from revision 3::
831
831
832 hg histedit -r 3
832 hg histedit -r 3
833
833
834 An editor opens, containing the list of revisions,
834 An editor opens, containing the list of revisions,
835 with specific actions specified::
835 with specific actions specified::
836
836
837 pick 5339bf82f0ca 3 Zworgle the foobar
837 pick 5339bf82f0ca 3 Zworgle the foobar
838 pick 8ef592ce7cc4 4 Bedazzle the zerlog
838 pick 8ef592ce7cc4 4 Bedazzle the zerlog
839 pick 0a9639fcda9d 5 Morgify the cromulancy
839 pick 0a9639fcda9d 5 Morgify the cromulancy
840
840
841 Additional information about the possible actions
841 Additional information about the possible actions
842 to take appears below the list of revisions.
842 to take appears below the list of revisions.
843
843
844 To remove revision 3 from the history,
844 To remove revision 3 from the history,
845 its action (at the beginning of the relevant line)
845 its action (at the beginning of the relevant line)
846 is changed to 'drop'::
846 is changed to 'drop'::
847
847
848 drop 5339bf82f0ca 3 Zworgle the foobar
848 drop 5339bf82f0ca 3 Zworgle the foobar
849 pick 8ef592ce7cc4 4 Bedazzle the zerlog
849 pick 8ef592ce7cc4 4 Bedazzle the zerlog
850 pick 0a9639fcda9d 5 Morgify the cromulancy
850 pick 0a9639fcda9d 5 Morgify the cromulancy
851
851
852 - A number of changes have been made.
852 - A number of changes have been made.
853 Revision 2 and 4 need to be swapped.
853 Revision 2 and 4 need to be swapped.
854
854
855 Start history editing from revision 2::
855 Start history editing from revision 2::
856
856
857 hg histedit -r 2
857 hg histedit -r 2
858
858
859 An editor opens, containing the list of revisions,
859 An editor opens, containing the list of revisions,
860 with specific actions specified::
860 with specific actions specified::
861
861
862 pick 252a1af424ad 2 Blorb a morgwazzle
862 pick 252a1af424ad 2 Blorb a morgwazzle
863 pick 5339bf82f0ca 3 Zworgle the foobar
863 pick 5339bf82f0ca 3 Zworgle the foobar
864 pick 8ef592ce7cc4 4 Bedazzle the zerlog
864 pick 8ef592ce7cc4 4 Bedazzle the zerlog
865
865
866 To swap revision 2 and 4, its lines are swapped
866 To swap revision 2 and 4, its lines are swapped
867 in the editor::
867 in the editor::
868
868
869 pick 8ef592ce7cc4 4 Bedazzle the zerlog
869 pick 8ef592ce7cc4 4 Bedazzle the zerlog
870 pick 5339bf82f0ca 3 Zworgle the foobar
870 pick 5339bf82f0ca 3 Zworgle the foobar
871 pick 252a1af424ad 2 Blorb a morgwazzle
871 pick 252a1af424ad 2 Blorb a morgwazzle
872
872
873 Returns 0 on success, 1 if user intervention is required (not only
873 Returns 0 on success, 1 if user intervention is required (not only
874 for intentional "edit" command, but also for resolving unexpected
874 for intentional "edit" command, but also for resolving unexpected
875 conflicts).
875 conflicts).
876 """
876 """
877 state = histeditstate(repo)
877 state = histeditstate(repo)
878 try:
878 try:
879 state.wlock = repo.wlock()
879 state.wlock = repo.wlock()
880 state.lock = repo.lock()
880 state.lock = repo.lock()
881 _histedit(ui, repo, state, *freeargs, **opts)
881 _histedit(ui, repo, state, *freeargs, **opts)
882 except error.Abort:
882 except error.Abort:
883 if repo.vfs.exists('histedit-last-edit.txt'):
883 if repo.vfs.exists('histedit-last-edit.txt'):
884 ui.warn(_('warning: histedit rules saved '
884 ui.warn(_('warning: histedit rules saved '
885 'to: .hg/histedit-last-edit.txt\n'))
885 'to: .hg/histedit-last-edit.txt\n'))
886 raise
886 raise
887 finally:
887 finally:
888 release(state.lock, state.wlock)
888 release(state.lock, state.wlock)
889
889
890 def _histedit(ui, repo, state, *freeargs, **opts):
890 def _histedit(ui, repo, state, *freeargs, **opts):
891 # TODO only abort if we try to histedit mq patches, not just
891 # TODO only abort if we try to histedit mq patches, not just
892 # blanket if mq patches are applied somewhere
892 # blanket if mq patches are applied somewhere
893 mq = getattr(repo, 'mq', None)
893 mq = getattr(repo, 'mq', None)
894 if mq and mq.applied:
894 if mq and mq.applied:
895 raise error.Abort(_('source has mq patches applied'))
895 raise error.Abort(_('source has mq patches applied'))
896
896
897 # basic argument incompatibility processing
897 # basic argument incompatibility processing
898 outg = opts.get('outgoing')
898 outg = opts.get('outgoing')
899 cont = opts.get('continue')
899 cont = opts.get('continue')
900 editplan = opts.get('edit_plan')
900 editplan = opts.get('edit_plan')
901 abort = opts.get('abort')
901 abort = opts.get('abort')
902 force = opts.get('force')
902 force = opts.get('force')
903 rules = opts.get('commands', '')
903 rules = opts.get('commands', '')
904 revs = opts.get('rev', [])
904 revs = opts.get('rev', [])
905 goal = 'new' # This invocation goal, in new, continue, abort
905 goal = 'new' # This invocation goal, in new, continue, abort
906 if force and not outg:
906 if force and not outg:
907 raise error.Abort(_('--force only allowed with --outgoing'))
907 raise error.Abort(_('--force only allowed with --outgoing'))
908 if cont:
908 if cont:
909 if any((outg, abort, revs, freeargs, rules, editplan)):
909 if any((outg, abort, revs, freeargs, rules, editplan)):
910 raise error.Abort(_('no arguments allowed with --continue'))
910 raise error.Abort(_('no arguments allowed with --continue'))
911 goal = 'continue'
911 goal = 'continue'
912 elif abort:
912 elif abort:
913 if any((outg, revs, freeargs, rules, editplan)):
913 if any((outg, revs, freeargs, rules, editplan)):
914 raise error.Abort(_('no arguments allowed with --abort'))
914 raise error.Abort(_('no arguments allowed with --abort'))
915 goal = 'abort'
915 goal = 'abort'
916 elif editplan:
916 elif editplan:
917 if any((outg, revs, freeargs)):
917 if any((outg, revs, freeargs)):
918 raise error.Abort(_('only --commands argument allowed with '
918 raise error.Abort(_('only --commands argument allowed with '
919 '--edit-plan'))
919 '--edit-plan'))
920 goal = 'edit-plan'
920 goal = 'edit-plan'
921 else:
921 else:
922 if os.path.exists(os.path.join(repo.path, 'histedit-state')):
922 if os.path.exists(os.path.join(repo.path, 'histedit-state')):
923 raise error.Abort(_('history edit already in progress, try '
923 raise error.Abort(_('history edit already in progress, try '
924 '--continue or --abort'))
924 '--continue or --abort'))
925 if outg:
925 if outg:
926 if revs:
926 if revs:
927 raise error.Abort(_('no revisions allowed with --outgoing'))
927 raise error.Abort(_('no revisions allowed with --outgoing'))
928 if len(freeargs) > 1:
928 if len(freeargs) > 1:
929 raise error.Abort(
929 raise error.Abort(
930 _('only one repo argument allowed with --outgoing'))
930 _('only one repo argument allowed with --outgoing'))
931 else:
931 else:
932 revs.extend(freeargs)
932 revs.extend(freeargs)
933 if len(revs) == 0:
933 if len(revs) == 0:
934 defaultrev = destutil.desthistedit(ui, repo)
934 defaultrev = destutil.desthistedit(ui, repo)
935 if defaultrev is not None:
935 if defaultrev is not None:
936 revs.append(defaultrev)
936 revs.append(defaultrev)
937
937
938 if len(revs) != 1:
938 if len(revs) != 1:
939 raise error.Abort(
939 raise error.Abort(
940 _('histedit requires exactly one ancestor revision'))
940 _('histedit requires exactly one ancestor revision'))
941
941
942
942
943 replacements = []
943 replacements = []
944 state.keep = opts.get('keep', False)
944 state.keep = opts.get('keep', False)
945 supportsmarkers = obsolete.isenabled(repo, obsolete.createmarkersopt)
945 supportsmarkers = obsolete.isenabled(repo, obsolete.createmarkersopt)
946
946
947 # rebuild state
947 # rebuild state
948 if goal == 'continue':
948 if goal == 'continue':
949 state.read()
949 state.read()
950 state = bootstrapcontinue(ui, state, opts)
950 state = bootstrapcontinue(ui, state, opts)
951 elif goal == 'edit-plan':
951 elif goal == 'edit-plan':
952 state.read()
952 state.read()
953 if not rules:
953 if not rules:
954 comment = editcomment % (node.short(state.parentctxnode),
954 comment = editcomment % (node.short(state.parentctxnode),
955 node.short(state.topmost))
955 node.short(state.topmost))
956 rules = ruleeditor(repo, ui, state.actions, comment)
956 rules = ruleeditor(repo, ui, state.actions, comment)
957 else:
957 else:
958 if rules == '-':
958 if rules == '-':
959 f = sys.stdin
959 f = sys.stdin
960 else:
960 else:
961 f = open(rules)
961 f = open(rules)
962 rules = f.read()
962 rules = f.read()
963 f.close()
963 f.close()
964 actions = parserules(rules, state)
964 actions = parserules(rules, state)
965 ctxs = [repo[act.nodetoverify()] \
965 ctxs = [repo[act.nodetoverify()] \
966 for act in state.actions if act.nodetoverify()]
966 for act in state.actions if act.nodetoverify()]
967 verifyactions(actions, state, ctxs)
967 verifyactions(actions, state, ctxs)
968 state.actions = actions
968 state.actions = actions
969 state.write()
969 state.write()
970 return
970 return
971 elif goal == 'abort':
971 elif goal == 'abort':
972 try:
972 try:
973 state.read()
973 state.read()
974 tmpnodes, leafs = newnodestoabort(state)
974 tmpnodes, leafs = newnodestoabort(state)
975 ui.debug('restore wc to old parent %s\n'
975 ui.debug('restore wc to old parent %s\n'
976 % node.short(state.topmost))
976 % node.short(state.topmost))
977
977
978 # Recover our old commits if necessary
978 # Recover our old commits if necessary
979 if not state.topmost in repo and state.backupfile:
979 if not state.topmost in repo and state.backupfile:
980 backupfile = repo.join(state.backupfile)
980 backupfile = repo.join(state.backupfile)
981 f = hg.openpath(ui, backupfile)
981 f = hg.openpath(ui, backupfile)
982 gen = exchange.readbundle(ui, f, backupfile)
982 gen = exchange.readbundle(ui, f, backupfile)
983 tr = repo.transaction('histedit.abort')
983 tr = repo.transaction('histedit.abort')
984 try:
984 try:
985 if not isinstance(gen, bundle2.unbundle20):
985 if not isinstance(gen, bundle2.unbundle20):
986 gen.apply(repo, 'histedit', 'bundle:' + backupfile)
986 gen.apply(repo, 'histedit', 'bundle:' + backupfile)
987 if isinstance(gen, bundle2.unbundle20):
987 if isinstance(gen, bundle2.unbundle20):
988 bundle2.applybundle(repo, gen, tr,
988 bundle2.applybundle(repo, gen, tr,
989 source='histedit',
989 source='histedit',
990 url='bundle:' + backupfile)
990 url='bundle:' + backupfile)
991 tr.close()
991 tr.close()
992 finally:
992 finally:
993 tr.release()
993 tr.release()
994
994
995 os.remove(backupfile)
995 os.remove(backupfile)
996
996
997 # check whether we should update away
997 # check whether we should update away
998 if repo.unfiltered().revs('parents() and (%n or %ln::)',
998 if repo.unfiltered().revs('parents() and (%n or %ln::)',
999 state.parentctxnode, leafs | tmpnodes):
999 state.parentctxnode, leafs | tmpnodes):
1000 hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
1000 hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
1001 cleanupnode(ui, repo, 'created', tmpnodes)
1001 cleanupnode(ui, repo, 'created', tmpnodes)
1002 cleanupnode(ui, repo, 'temp', leafs)
1002 cleanupnode(ui, repo, 'temp', leafs)
1003 except Exception:
1003 except Exception:
1004 if state.inprogress():
1004 if state.inprogress():
1005 ui.warn(_('warning: encountered an exception during histedit '
1005 ui.warn(_('warning: encountered an exception during histedit '
1006 '--abort; the repository may not have been completely '
1006 '--abort; the repository may not have been completely '
1007 'cleaned up\n'))
1007 'cleaned up\n'))
1008 raise
1008 raise
1009 finally:
1009 finally:
1010 state.clear()
1010 state.clear()
1011 return
1011 return
1012 else:
1012 else:
1013 cmdutil.checkunfinished(repo)
1013 cmdutil.checkunfinished(repo)
1014 cmdutil.bailifchanged(repo)
1014 cmdutil.bailifchanged(repo)
1015
1015
1016 if repo.vfs.exists('histedit-last-edit.txt'):
1016 if repo.vfs.exists('histedit-last-edit.txt'):
1017 repo.vfs.unlink('histedit-last-edit.txt')
1017 repo.vfs.unlink('histedit-last-edit.txt')
1018 topmost, empty = repo.dirstate.parents()
1018 topmost, empty = repo.dirstate.parents()
1019 if outg:
1019 if outg:
1020 if freeargs:
1020 if freeargs:
1021 remote = freeargs[0]
1021 remote = freeargs[0]
1022 else:
1022 else:
1023 remote = None
1023 remote = None
1024 root = findoutgoing(ui, repo, remote, force, opts)
1024 root = findoutgoing(ui, repo, remote, force, opts)
1025 else:
1025 else:
1026 rr = list(repo.set('roots(%ld)', scmutil.revrange(repo, revs)))
1026 rr = list(repo.set('roots(%ld)', scmutil.revrange(repo, revs)))
1027 if len(rr) != 1:
1027 if len(rr) != 1:
1028 raise error.Abort(_('The specified revisions must have '
1028 raise error.Abort(_('The specified revisions must have '
1029 'exactly one common root'))
1029 'exactly one common root'))
1030 root = rr[0].node()
1030 root = rr[0].node()
1031
1031
1032 revs = between(repo, root, topmost, state.keep)
1032 revs = between(repo, root, topmost, state.keep)
1033 if not revs:
1033 if not revs:
1034 raise error.Abort(_('%s is not an ancestor of working directory') %
1034 raise error.Abort(_('%s is not an ancestor of working directory') %
1035 node.short(root))
1035 node.short(root))
1036
1036
1037 ctxs = [repo[r] for r in revs]
1037 ctxs = [repo[r] for r in revs]
1038 if not rules:
1038 if not rules:
1039 comment = editcomment % (node.short(root), node.short(topmost))
1039 comment = editcomment % (node.short(root), node.short(topmost))
1040 actions = [pick(state, r) for r in revs]
1040 actions = [pick(state, r) for r in revs]
1041 rules = ruleeditor(repo, ui, actions, comment)
1041 rules = ruleeditor(repo, ui, actions, comment)
1042 else:
1042 else:
1043 if rules == '-':
1043 if rules == '-':
1044 f = sys.stdin
1044 f = sys.stdin
1045 else:
1045 else:
1046 f = open(rules)
1046 f = open(rules)
1047 rules = f.read()
1047 rules = f.read()
1048 f.close()
1048 f.close()
1049 actions = parserules(rules, state)
1049 actions = parserules(rules, state)
1050 verifyactions(actions, state, ctxs)
1050 verifyactions(actions, state, ctxs)
1051
1051
1052 parentctxnode = repo[root].parents()[0].node()
1052 parentctxnode = repo[root].parents()[0].node()
1053
1053
1054 state.parentctxnode = parentctxnode
1054 state.parentctxnode = parentctxnode
1055 state.actions = actions
1055 state.actions = actions
1056 state.topmost = topmost
1056 state.topmost = topmost
1057 state.replacements = replacements
1057 state.replacements = replacements
1058
1058
1059 # Create a backup so we can always abort completely.
1059 # Create a backup so we can always abort completely.
1060 backupfile = None
1060 backupfile = None
1061 if not obsolete.isenabled(repo, obsolete.createmarkersopt):
1061 if not obsolete.isenabled(repo, obsolete.createmarkersopt):
1062 backupfile = repair._bundle(repo, [parentctxnode], [topmost], root,
1062 backupfile = repair._bundle(repo, [parentctxnode], [topmost], root,
1063 'histedit')
1063 'histedit')
1064 state.backupfile = backupfile
1064 state.backupfile = backupfile
1065
1065
1066 # preprocess rules so that we can hide inner folds from the user
1066 # preprocess rules so that we can hide inner folds from the user
1067 # and only show one editor
1067 # and only show one editor
1068 actions = state.actions[:]
1068 actions = state.actions[:]
1069 for idx, (action, nextact) in enumerate(
1069 for idx, (action, nextact) in enumerate(
1070 zip(actions, actions[1:] + [None])):
1070 zip(actions, actions[1:] + [None])):
1071 if action.verb == 'fold' and nextact and nextact.verb == 'fold':
1071 if action.verb == 'fold' and nextact and nextact.verb == 'fold':
1072 state.actions[idx].__class__ = _multifold
1072 state.actions[idx].__class__ = _multifold
1073
1073
1074 while state.actions:
1074 while state.actions:
1075 state.write()
1075 state.write()
1076 actobj = state.actions.pop(0)
1076 actobj = state.actions.pop(0)
1077 ui.debug('histedit: processing %s %s\n' % (actobj.verb,\
1077 ui.debug('histedit: processing %s %s\n' % (actobj.verb,\
1078 actobj.torule()))
1078 actobj.torule()))
1079 parentctx, replacement_ = actobj.run()
1079 parentctx, replacement_ = actobj.run()
1080 state.parentctxnode = parentctx.node()
1080 state.parentctxnode = parentctx.node()
1081 state.replacements.extend(replacement_)
1081 state.replacements.extend(replacement_)
1082 state.write()
1082 state.write()
1083
1083
1084 hg.update(repo, state.parentctxnode)
1084 hg.update(repo, state.parentctxnode)
1085
1085
1086 mapping, tmpnodes, created, ntm = processreplacement(state)
1086 mapping, tmpnodes, created, ntm = processreplacement(state)
1087 if mapping:
1087 if mapping:
1088 for prec, succs in mapping.iteritems():
1088 for prec, succs in mapping.iteritems():
1089 if not succs:
1089 if not succs:
1090 ui.debug('histedit: %s is dropped\n' % node.short(prec))
1090 ui.debug('histedit: %s is dropped\n' % node.short(prec))
1091 else:
1091 else:
1092 ui.debug('histedit: %s is replaced by %s\n' % (
1092 ui.debug('histedit: %s is replaced by %s\n' % (
1093 node.short(prec), node.short(succs[0])))
1093 node.short(prec), node.short(succs[0])))
1094 if len(succs) > 1:
1094 if len(succs) > 1:
1095 m = 'histedit: %s'
1095 m = 'histedit: %s'
1096 for n in succs[1:]:
1096 for n in succs[1:]:
1097 ui.debug(m % node.short(n))
1097 ui.debug(m % node.short(n))
1098
1098
1099 if supportsmarkers:
1099 if supportsmarkers:
1100 # Only create markers if the temp nodes weren't already removed.
1100 # Only create markers if the temp nodes weren't already removed.
1101 obsolete.createmarkers(repo, ((repo[t],()) for t in sorted(tmpnodes)
1101 obsolete.createmarkers(repo, ((repo[t],()) for t in sorted(tmpnodes)
1102 if t in repo))
1102 if t in repo))
1103 else:
1103 else:
1104 cleanupnode(ui, repo, 'temp', tmpnodes)
1104 cleanupnode(ui, repo, 'temp', tmpnodes)
1105
1105
1106 if not state.keep:
1106 if not state.keep:
1107 if mapping:
1107 if mapping:
1108 movebookmarks(ui, repo, mapping, state.topmost, ntm)
1108 movebookmarks(ui, repo, mapping, state.topmost, ntm)
1109 # TODO update mq state
1109 # TODO update mq state
1110 if supportsmarkers:
1110 if supportsmarkers:
1111 markers = []
1111 markers = []
1112 # sort by revision number because it sound "right"
1112 # sort by revision number because it sound "right"
1113 for prec in sorted(mapping, key=repo.changelog.rev):
1113 for prec in sorted(mapping, key=repo.changelog.rev):
1114 succs = mapping[prec]
1114 succs = mapping[prec]
1115 markers.append((repo[prec],
1115 markers.append((repo[prec],
1116 tuple(repo[s] for s in succs)))
1116 tuple(repo[s] for s in succs)))
1117 if markers:
1117 if markers:
1118 obsolete.createmarkers(repo, markers)
1118 obsolete.createmarkers(repo, markers)
1119 else:
1119 else:
1120 cleanupnode(ui, repo, 'replaced', mapping)
1120 cleanupnode(ui, repo, 'replaced', mapping)
1121
1121
1122 state.clear()
1122 state.clear()
1123 if os.path.exists(repo.sjoin('undo')):
1123 if os.path.exists(repo.sjoin('undo')):
1124 os.unlink(repo.sjoin('undo'))
1124 os.unlink(repo.sjoin('undo'))
1125
1125
1126 def bootstrapcontinue(ui, state, opts):
1126 def bootstrapcontinue(ui, state, opts):
1127 repo = state.repo
1127 repo = state.repo
1128 if state.actions:
1128 if state.actions:
1129 actobj = state.actions.pop(0)
1129 actobj = state.actions.pop(0)
1130
1130
1131 if _isdirtywc(repo):
1131 if _isdirtywc(repo):
1132 actobj.continuedirty()
1132 actobj.continuedirty()
1133 if _isdirtywc(repo):
1133 if _isdirtywc(repo):
1134 abortdirty()
1134 abortdirty()
1135
1135
1136 parentctx, replacements = actobj.continueclean()
1136 parentctx, replacements = actobj.continueclean()
1137
1137
1138 state.parentctxnode = parentctx.node()
1138 state.parentctxnode = parentctx.node()
1139 state.replacements.extend(replacements)
1139 state.replacements.extend(replacements)
1140
1140
1141 return state
1141 return state
1142
1142
1143 def between(repo, old, new, keep):
1143 def between(repo, old, new, keep):
1144 """select and validate the set of revision to edit
1144 """select and validate the set of revision to edit
1145
1145
1146 When keep is false, the specified set can't have children."""
1146 When keep is false, the specified set can't have children."""
1147 ctxs = list(repo.set('%n::%n', old, new))
1147 ctxs = list(repo.set('%n::%n', old, new))
1148 if ctxs and not keep:
1148 if ctxs and not keep:
1149 if (not obsolete.isenabled(repo, obsolete.allowunstableopt) and
1149 if (not obsolete.isenabled(repo, obsolete.allowunstableopt) and
1150 repo.revs('(%ld::) - (%ld)', ctxs, ctxs)):
1150 repo.revs('(%ld::) - (%ld)', ctxs, ctxs)):
1151 raise error.Abort(_('cannot edit history that would orphan nodes'))
1151 raise error.Abort(_('cannot edit history that would orphan nodes'))
1152 if repo.revs('(%ld) and merge()', ctxs):
1152 if repo.revs('(%ld) and merge()', ctxs):
1153 raise error.Abort(_('cannot edit history that contains merges'))
1153 raise error.Abort(_('cannot edit history that contains merges'))
1154 root = ctxs[0] # list is already sorted by repo.set
1154 root = ctxs[0] # list is already sorted by repo.set
1155 if not root.mutable():
1155 if not root.mutable():
1156 raise error.Abort(_('cannot edit public changeset: %s') % root,
1156 raise error.Abort(_('cannot edit public changeset: %s') % root,
1157 hint=_('see "hg help phases" for details'))
1157 hint=_('see "hg help phases" for details'))
1158 return [c.node() for c in ctxs]
1158 return [c.node() for c in ctxs]
1159
1159
1160 def ruleeditor(repo, ui, actions, editcomment=""):
1160 def ruleeditor(repo, ui, actions, editcomment=""):
1161 """open an editor to edit rules
1161 """open an editor to edit rules
1162
1162
1163 rules are in the format [ [act, ctx], ...] like in state.rules
1163 rules are in the format [ [act, ctx], ...] like in state.rules
1164 """
1164 """
1165 rules = '\n'.join([act.torule() for act in actions])
1165 rules = '\n'.join([act.torule() for act in actions])
1166 rules += '\n\n'
1166 rules += '\n\n'
1167 rules += editcomment
1167 rules += editcomment
1168 rules = ui.edit(rules, ui.username(), {'prefix': 'histedit'})
1168 rules = ui.edit(rules, ui.username(), {'prefix': 'histedit'})
1169
1169
1170 # Save edit rules in .hg/histedit-last-edit.txt in case
1170 # Save edit rules in .hg/histedit-last-edit.txt in case
1171 # the user needs to ask for help after something
1171 # the user needs to ask for help after something
1172 # surprising happens.
1172 # surprising happens.
1173 f = open(repo.join('histedit-last-edit.txt'), 'w')
1173 f = open(repo.join('histedit-last-edit.txt'), 'w')
1174 f.write(rules)
1174 f.write(rules)
1175 f.close()
1175 f.close()
1176
1176
1177 return rules
1177 return rules
1178
1178
1179 def parserules(rules, state):
1179 def parserules(rules, state):
1180 """Read the histedit rules string and return list of action objects """
1180 """Read the histedit rules string and return list of action objects """
1181 rules = [l for l in (r.strip() for r in rules.splitlines())
1181 rules = [l for l in (r.strip() for r in rules.splitlines())
1182 if l and not l.startswith('#')]
1182 if l and not l.startswith('#')]
1183 actions = []
1183 actions = []
1184 for r in rules:
1184 for r in rules:
1185 if ' ' not in r:
1185 if ' ' not in r:
1186 raise error.Abort(_('malformed line "%s"') % r)
1186 raise error.Abort(_('malformed line "%s"') % r)
1187 verb, rest = r.split(' ', 1)
1187 verb, rest = r.split(' ', 1)
1188
1188
1189 if verb not in actiontable:
1189 if verb not in actiontable:
1190 raise error.Abort(_('unknown action "%s"') % verb)
1190 raise error.Abort(_('unknown action "%s"') % verb)
1191
1191
1192 action = actiontable[verb].fromrule(state, rest)
1192 action = actiontable[verb].fromrule(state, rest)
1193 actions.append(action)
1193 actions.append(action)
1194 return actions
1194 return actions
1195
1195
1196 def verifyactions(actions, state, ctxs):
1196 def verifyactions(actions, state, ctxs):
1197 """Verify that there exists exactly one action per given changeset and
1197 """Verify that there exists exactly one action per given changeset and
1198 other constraints.
1198 other constraints.
1199
1199
1200 Will abort if there are to many or too few rules, a malformed rule,
1200 Will abort if there are to many or too few rules, a malformed rule,
1201 or a rule on a changeset outside of the user-given range.
1201 or a rule on a changeset outside of the user-given range.
1202 """
1202 """
1203 expected = set(c.hex() for c in ctxs)
1203 expected = set(c.hex() for c in ctxs)
1204 seen = set()
1204 seen = set()
1205 for action in actions:
1205 for action in actions:
1206 action.verify()
1206 action.verify()
1207 constraints = action.constraints()
1207 constraints = action.constraints()
1208 for constraint in constraints:
1208 for constraint in constraints:
1209 if constraint not in _constraints.known():
1209 if constraint not in _constraints.known():
1210 raise error.Abort(_('unknown constraint "%s"') % constraint)
1210 raise error.Abort(_('unknown constraint "%s"') % constraint)
1211
1211
1212 nodetoverify = action.nodetoverify()
1212 nodetoverify = action.nodetoverify()
1213 if nodetoverify is not None:
1213 if nodetoverify is not None:
1214 ha = node.hex(nodetoverify)
1214 ha = node.hex(nodetoverify)
1215 if _constraints.noother in constraints and ha not in expected:
1215 if _constraints.noother in constraints and ha not in expected:
1216 raise error.Abort(
1216 raise error.Abort(
1217 _('may not use "%s" with changesets '
1217 _('may not use "%s" with changesets '
1218 'other than the ones listed') % action.verb)
1218 'other than the ones listed') % action.verb)
1219 if _constraints.forceother in constraints and ha in expected:
1219 if _constraints.forceother in constraints and ha in expected:
1220 raise error.Abort(
1220 raise error.Abort(
1221 _('may not use "%s" with changesets '
1221 _('may not use "%s" with changesets '
1222 'within the edited list') % action.verb)
1222 'within the edited list') % action.verb)
1223 if _constraints.noduplicates in constraints and ha in seen:
1223 if _constraints.noduplicates in constraints and ha in seen:
1224 raise error.Abort(_('duplicated command for changeset %s') %
1224 raise error.Abort(_('duplicated command for changeset %s') %
1225 ha[:12])
1225 ha[:12])
1226 seen.add(ha)
1226 seen.add(ha)
1227 missing = sorted(expected - seen) # sort to stabilize output
1227 missing = sorted(expected - seen) # sort to stabilize output
1228 if missing:
1228 if missing:
1229 raise error.Abort(_('missing rules for changeset %s') %
1229 raise error.Abort(_('missing rules for changeset %s') %
1230 missing[0][:12],
1230 missing[0][:12],
1231 hint=_('use "drop %s" to discard the change') % missing[0][:12])
1231 hint=_('use "drop %s" to discard the change') % missing[0][:12])
1232
1232
1233 def newnodestoabort(state):
1233 def newnodestoabort(state):
1234 """process the list of replacements to return
1234 """process the list of replacements to return
1235
1235
1236 1) the list of final node
1236 1) the list of final node
1237 2) the list of temporary node
1237 2) the list of temporary node
1238
1238
1239 This meant to be used on abort as less data are required in this case.
1239 This meant to be used on abort as less data are required in this case.
1240 """
1240 """
1241 replacements = state.replacements
1241 replacements = state.replacements
1242 allsuccs = set()
1242 allsuccs = set()
1243 replaced = set()
1243 replaced = set()
1244 for rep in replacements:
1244 for rep in replacements:
1245 allsuccs.update(rep[1])
1245 allsuccs.update(rep[1])
1246 replaced.add(rep[0])
1246 replaced.add(rep[0])
1247 newnodes = allsuccs - replaced
1247 newnodes = allsuccs - replaced
1248 tmpnodes = allsuccs & replaced
1248 tmpnodes = allsuccs & replaced
1249 return newnodes, tmpnodes
1249 return newnodes, tmpnodes
1250
1250
1251
1251
1252 def processreplacement(state):
1252 def processreplacement(state):
1253 """process the list of replacements to return
1253 """process the list of replacements to return
1254
1254
1255 1) the final mapping between original and created nodes
1255 1) the final mapping between original and created nodes
1256 2) the list of temporary node created by histedit
1256 2) the list of temporary node created by histedit
1257 3) the list of new commit created by histedit"""
1257 3) the list of new commit created by histedit"""
1258 replacements = state.replacements
1258 replacements = state.replacements
1259 allsuccs = set()
1259 allsuccs = set()
1260 replaced = set()
1260 replaced = set()
1261 fullmapping = {}
1261 fullmapping = {}
1262 # initialize basic set
1262 # initialize basic set
1263 # fullmapping records all operations recorded in replacement
1263 # fullmapping records all operations recorded in replacement
1264 for rep in replacements:
1264 for rep in replacements:
1265 allsuccs.update(rep[1])
1265 allsuccs.update(rep[1])
1266 replaced.add(rep[0])
1266 replaced.add(rep[0])
1267 fullmapping.setdefault(rep[0], set()).update(rep[1])
1267 fullmapping.setdefault(rep[0], set()).update(rep[1])
1268 new = allsuccs - replaced
1268 new = allsuccs - replaced
1269 tmpnodes = allsuccs & replaced
1269 tmpnodes = allsuccs & replaced
1270 # Reduce content fullmapping into direct relation between original nodes
1270 # Reduce content fullmapping into direct relation between original nodes
1271 # and final node created during history edition
1271 # and final node created during history edition
1272 # Dropped changeset are replaced by an empty list
1272 # Dropped changeset are replaced by an empty list
1273 toproceed = set(fullmapping)
1273 toproceed = set(fullmapping)
1274 final = {}
1274 final = {}
1275 while toproceed:
1275 while toproceed:
1276 for x in list(toproceed):
1276 for x in list(toproceed):
1277 succs = fullmapping[x]
1277 succs = fullmapping[x]
1278 for s in list(succs):
1278 for s in list(succs):
1279 if s in toproceed:
1279 if s in toproceed:
1280 # non final node with unknown closure
1280 # non final node with unknown closure
1281 # We can't process this now
1281 # We can't process this now
1282 break
1282 break
1283 elif s in final:
1283 elif s in final:
1284 # non final node, replace with closure
1284 # non final node, replace with closure
1285 succs.remove(s)
1285 succs.remove(s)
1286 succs.update(final[s])
1286 succs.update(final[s])
1287 else:
1287 else:
1288 final[x] = succs
1288 final[x] = succs
1289 toproceed.remove(x)
1289 toproceed.remove(x)
1290 # remove tmpnodes from final mapping
1290 # remove tmpnodes from final mapping
1291 for n in tmpnodes:
1291 for n in tmpnodes:
1292 del final[n]
1292 del final[n]
1293 # we expect all changes involved in final to exist in the repo
1293 # we expect all changes involved in final to exist in the repo
1294 # turn `final` into list (topologically sorted)
1294 # turn `final` into list (topologically sorted)
1295 nm = state.repo.changelog.nodemap
1295 nm = state.repo.changelog.nodemap
1296 for prec, succs in final.items():
1296 for prec, succs in final.items():
1297 final[prec] = sorted(succs, key=nm.get)
1297 final[prec] = sorted(succs, key=nm.get)
1298
1298
1299 # computed topmost element (necessary for bookmark)
1299 # computed topmost element (necessary for bookmark)
1300 if new:
1300 if new:
1301 newtopmost = sorted(new, key=state.repo.changelog.rev)[-1]
1301 newtopmost = sorted(new, key=state.repo.changelog.rev)[-1]
1302 elif not final:
1302 elif not final:
1303 # Nothing rewritten at all. we won't need `newtopmost`
1303 # Nothing rewritten at all. we won't need `newtopmost`
1304 # It is the same as `oldtopmost` and `processreplacement` know it
1304 # It is the same as `oldtopmost` and `processreplacement` know it
1305 newtopmost = None
1305 newtopmost = None
1306 else:
1306 else:
1307 # every body died. The newtopmost is the parent of the root.
1307 # every body died. The newtopmost is the parent of the root.
1308 r = state.repo.changelog.rev
1308 r = state.repo.changelog.rev
1309 newtopmost = state.repo[sorted(final, key=r)[0]].p1().node()
1309 newtopmost = state.repo[sorted(final, key=r)[0]].p1().node()
1310
1310
1311 return final, tmpnodes, new, newtopmost
1311 return final, tmpnodes, new, newtopmost
1312
1312
1313 def movebookmarks(ui, repo, mapping, oldtopmost, newtopmost):
1313 def movebookmarks(ui, repo, mapping, oldtopmost, newtopmost):
1314 """Move bookmark from old to newly created node"""
1314 """Move bookmark from old to newly created node"""
1315 if not mapping:
1315 if not mapping:
1316 # if nothing got rewritten there is not purpose for this function
1316 # if nothing got rewritten there is not purpose for this function
1317 return
1317 return
1318 moves = []
1318 moves = []
1319 for bk, old in sorted(repo._bookmarks.iteritems()):
1319 for bk, old in sorted(repo._bookmarks.iteritems()):
1320 if old == oldtopmost:
1320 if old == oldtopmost:
1321 # special case ensure bookmark stay on tip.
1321 # special case ensure bookmark stay on tip.
1322 #
1322 #
1323 # This is arguably a feature and we may only want that for the
1323 # This is arguably a feature and we may only want that for the
1324 # active bookmark. But the behavior is kept compatible with the old
1324 # active bookmark. But the behavior is kept compatible with the old
1325 # version for now.
1325 # version for now.
1326 moves.append((bk, newtopmost))
1326 moves.append((bk, newtopmost))
1327 continue
1327 continue
1328 base = old
1328 base = old
1329 new = mapping.get(base, None)
1329 new = mapping.get(base, None)
1330 if new is None:
1330 if new is None:
1331 continue
1331 continue
1332 while not new:
1332 while not new:
1333 # base is killed, trying with parent
1333 # base is killed, trying with parent
1334 base = repo[base].p1().node()
1334 base = repo[base].p1().node()
1335 new = mapping.get(base, (base,))
1335 new = mapping.get(base, (base,))
1336 # nothing to move
1336 # nothing to move
1337 moves.append((bk, new[-1]))
1337 moves.append((bk, new[-1]))
1338 if moves:
1338 if moves:
1339 lock = tr = None
1339 lock = tr = None
1340 try:
1340 try:
1341 lock = repo.lock()
1341 lock = repo.lock()
1342 tr = repo.transaction('histedit')
1342 tr = repo.transaction('histedit')
1343 marks = repo._bookmarks
1343 marks = repo._bookmarks
1344 for mark, new in moves:
1344 for mark, new in moves:
1345 old = marks[mark]
1345 old = marks[mark]
1346 ui.note(_('histedit: moving bookmarks %s from %s to %s\n')
1346 ui.note(_('histedit: moving bookmarks %s from %s to %s\n')
1347 % (mark, node.short(old), node.short(new)))
1347 % (mark, node.short(old), node.short(new)))
1348 marks[mark] = new
1348 marks[mark] = new
1349 marks.recordchange(tr)
1349 marks.recordchange(tr)
1350 tr.close()
1350 tr.close()
1351 finally:
1351 finally:
1352 release(tr, lock)
1352 release(tr, lock)
1353
1353
1354 def cleanupnode(ui, repo, name, nodes):
1354 def cleanupnode(ui, repo, name, nodes):
1355 """strip a group of nodes from the repository
1355 """strip a group of nodes from the repository
1356
1356
1357 The set of node to strip may contains unknown nodes."""
1357 The set of node to strip may contains unknown nodes."""
1358 ui.debug('should strip %s nodes %s\n' %
1358 ui.debug('should strip %s nodes %s\n' %
1359 (name, ', '.join([node.short(n) for n in nodes])))
1359 (name, ', '.join([node.short(n) for n in nodes])))
1360 lock = None
1360 lock = None
1361 try:
1361 try:
1362 lock = repo.lock()
1362 lock = repo.lock()
1363 # do not let filtering get in the way of the cleanse
1363 # do not let filtering get in the way of the cleanse
1364 # we should probably get rid of obsolescence marker created during the
1364 # we should probably get rid of obsolescence marker created during the
1365 # histedit, but we currently do not have such information.
1365 # histedit, but we currently do not have such information.
1366 repo = repo.unfiltered()
1366 repo = repo.unfiltered()
1367 # Find all nodes that need to be stripped
1367 # Find all nodes that need to be stripped
1368 # (we use %lr instead of %ln to silently ignore unknown items)
1368 # (we use %lr instead of %ln to silently ignore unknown items)
1369 nm = repo.changelog.nodemap
1369 nm = repo.changelog.nodemap
1370 nodes = sorted(n for n in nodes if n in nm)
1370 nodes = sorted(n for n in nodes if n in nm)
1371 roots = [c.node() for c in repo.set("roots(%ln)", nodes)]
1371 roots = [c.node() for c in repo.set("roots(%ln)", nodes)]
1372 for c in roots:
1372 for c in roots:
1373 # We should process node in reverse order to strip tip most first.
1373 # We should process node in reverse order to strip tip most first.
1374 # but this trigger a bug in changegroup hook.
1374 # but this trigger a bug in changegroup hook.
1375 # This would reduce bundle overhead
1375 # This would reduce bundle overhead
1376 repair.strip(ui, repo, c)
1376 repair.strip(ui, repo, c)
1377 finally:
1377 finally:
1378 release(lock)
1378 release(lock)
1379
1379
1380 def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs):
1380 def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs):
1381 if isinstance(nodelist, str):
1381 if isinstance(nodelist, str):
1382 nodelist = [nodelist]
1382 nodelist = [nodelist]
1383 if os.path.exists(os.path.join(repo.path, 'histedit-state')):
1383 if os.path.exists(os.path.join(repo.path, 'histedit-state')):
1384 state = histeditstate(repo)
1384 state = histeditstate(repo)
1385 state.read()
1385 state.read()
1386 histedit_nodes = set([action.nodetoverify() for action
1386 histedit_nodes = set([action.nodetoverify() for action
1387 in state.actions if action.nodetoverify()])
1387 in state.actions if action.nodetoverify()])
1388 strip_nodes = set([repo[n].node() for n in nodelist])
1388 strip_nodes = set([repo[n].node() for n in nodelist])
1389 common_nodes = histedit_nodes & strip_nodes
1389 common_nodes = histedit_nodes & strip_nodes
1390 if common_nodes:
1390 if common_nodes:
1391 raise error.Abort(_("histedit in progress, can't strip %s")
1391 raise error.Abort(_("histedit in progress, can't strip %s")
1392 % ', '.join(node.short(x) for x in common_nodes))
1392 % ', '.join(node.short(x) for x in common_nodes))
1393 return orig(ui, repo, nodelist, *args, **kwargs)
1393 return orig(ui, repo, nodelist, *args, **kwargs)
1394
1394
1395 extensions.wrapfunction(repair, 'strip', stripwrapper)
1395 extensions.wrapfunction(repair, 'strip', stripwrapper)
1396
1396
1397 def summaryhook(ui, repo):
1397 def summaryhook(ui, repo):
1398 if not os.path.exists(repo.join('histedit-state')):
1398 if not os.path.exists(repo.join('histedit-state')):
1399 return
1399 return
1400 state = histeditstate(repo)
1400 state = histeditstate(repo)
1401 state.read()
1401 state.read()
1402 if state.actions:
1402 if state.actions:
1403 # i18n: column positioning for "hg summary"
1403 # i18n: column positioning for "hg summary"
1404 ui.write(_('hist: %s (histedit --continue)\n') %
1404 ui.write(_('hist: %s (histedit --continue)\n') %
1405 (ui.label(_('%d remaining'), 'histedit.remaining') %
1405 (ui.label(_('%d remaining'), 'histedit.remaining') %
1406 len(state.actions)))
1406 len(state.actions)))
1407
1407
1408 def extsetup(ui):
1408 def extsetup(ui):
1409 cmdutil.summaryhooks.add('histedit', summaryhook)
1409 cmdutil.summaryhooks.add('histedit', summaryhook)
1410 cmdutil.unfinishedstates.append(
1410 cmdutil.unfinishedstates.append(
1411 ['histedit-state', False, True, _('histedit in progress'),
1411 ['histedit-state', False, True, _('histedit in progress'),
1412 _("use 'hg histedit --continue' or 'hg histedit --abort'")])
1412 _("use 'hg histedit --continue' or 'hg histedit --abort'")])
1413 if ui.configbool("experimental", "histeditng"):
1413 if ui.configbool("experimental", "histeditng"):
1414 globals()['base'] = addhisteditaction(['base', 'b'])(base)
1414 globals()['base'] = addhisteditaction(['base', 'b'])(base)
@@ -1,273 +1,265 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [alias]
4 > [alias]
5 > tglog = log -G --template "{rev}:{node}:{phase} '{desc}'\n"
5 > tglog = log -G --template "{rev}:{node}:{phase} '{desc}'\n"
6 > [extensions]
6 > [extensions]
7 > histedit=
7 > histedit=
8 > [experimental]
8 > [experimental]
9 > histeditng=True
9 > histeditng=True
10 > EOF
10 > EOF
11
11
12 Create repo a:
12 Create repo a:
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 $ hg tglog
25 $ hg tglog
26 @ 7:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
26 @ 7:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
27 |
27 |
28 | o 6:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
28 | o 6:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
29 |/|
29 |/|
30 o | 5:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
30 o | 5:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
31 | |
31 | |
32 | o 4:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
32 | o 4:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
33 |/
33 |/
34 | o 3:32af7686d403cf45b5d95f2d70cebea587ac806a:draft 'D'
34 | o 3:32af7686d403cf45b5d95f2d70cebea587ac806a:draft 'D'
35 | |
35 | |
36 | o 2:5fddd98957c8a54a4d436dfe1da9d87f21a1b97b:draft 'C'
36 | o 2:5fddd98957c8a54a4d436dfe1da9d87f21a1b97b:draft 'C'
37 | |
37 | |
38 | o 1:42ccdea3bb16d28e1848c95fe2e44c000f3f21b1:draft 'B'
38 | o 1:42ccdea3bb16d28e1848c95fe2e44c000f3f21b1:draft 'B'
39 |/
39 |/
40 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
40 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
41
41
42
42
43
43
44 Go to D
44 Go to D
45 $ hg update 3
45 $ hg update 3
46 3 files updated, 0 files merged, 2 files removed, 0 files unresolved
46 3 files updated, 0 files merged, 2 files removed, 0 files unresolved
47 edit the history to rebase B onto H
47 edit the history to rebase B onto H
48
48
49
49
50 Rebase B onto H
50 Rebase B onto H
51 $ hg histedit 1 --commands - 2>&1 << EOF | fixbundle
51 $ hg histedit 1 --commands - 2>&1 << EOF | fixbundle
52 > base 02de42196ebe
52 > base 02de42196ebe
53 > pick 42ccdea3bb16 B
53 > pick 42ccdea3bb16 B
54 > pick 5fddd98957c8 C
54 > pick 5fddd98957c8 C
55 > pick 32af7686d403 D
55 > pick 32af7686d403 D
56 > EOF
56 > EOF
57 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
57 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
58 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
59 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
60 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
61
58
62 $ hg tglog
59 $ hg tglog
63 @ 7:0937e82309df47d14176ee15e45dbec5fbdef340:draft 'D'
60 @ 7:0937e82309df47d14176ee15e45dbec5fbdef340:draft 'D'
64 |
61 |
65 o 6:f778d1cbddac4ab679d9983c9bb92e4c5e09e7fa:draft 'C'
62 o 6:f778d1cbddac4ab679d9983c9bb92e4c5e09e7fa:draft 'C'
66 |
63 |
67 o 5:3d41b7cc708545206213a842f96d812d2e73d818:draft 'B'
64 o 5:3d41b7cc708545206213a842f96d812d2e73d818:draft 'B'
68 |
65 |
69 o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
66 o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
70 |
67 |
71 | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
68 | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
72 |/|
69 |/|
73 o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
70 o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
74 | |
71 | |
75 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
72 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
76 |/
73 |/
77 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
74 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
78
75
79 Rebase back and drop something
76 Rebase back and drop something
80 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
77 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
81 > base cd010b8cd998
78 > base cd010b8cd998
82 > pick 3d41b7cc7085 B
79 > pick 3d41b7cc7085 B
83 > drop f778d1cbddac C
80 > drop f778d1cbddac C
84 > pick 0937e82309df D
81 > pick 0937e82309df D
85 > EOF
82 > EOF
86 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
83 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
87 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
88 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
89
84
90 $ hg tglog
85 $ hg tglog
91 @ 6:476cc3e4168da2d036b141f7f7dcff7f8e3fe846:draft 'D'
86 @ 6:476cc3e4168da2d036b141f7f7dcff7f8e3fe846:draft 'D'
92 |
87 |
93 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
88 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
94 |
89 |
95 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
90 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
96 | |
91 | |
97 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
92 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
98 | |/|
93 | |/|
99 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
94 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
100 |/ /
95 |/ /
101 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
96 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
102 |/
97 |/
103 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
98 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
104
99
105 Split stack
100 Split stack
106 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
101 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
107 > base cd010b8cd998
102 > base cd010b8cd998
108 > pick d273e35dcdf2 B
103 > pick d273e35dcdf2 B
109 > base cd010b8cd998
104 > base cd010b8cd998
110 > pick 476cc3e4168d D
105 > pick 476cc3e4168d D
111 > EOF
106 > EOF
112 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
107 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
113 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
114
108
115 $ hg tglog
109 $ hg tglog
116 @ 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
110 @ 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
117 |
111 |
118 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
112 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
119 |/
113 |/
120 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
114 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
121 | |
115 | |
122 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
116 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
123 | |/|
117 | |/|
124 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
118 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
125 |/ /
119 |/ /
126 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
120 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
127 |/
121 |/
128 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
122 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
129
123
130 Abort
124 Abort
131 $ echo x > B
125 $ echo x > B
132 $ hg add B
126 $ hg add B
133 $ hg commit -m "X"
127 $ hg commit -m "X"
134 $ hg tglog
128 $ hg tglog
135 @ 7:591369deedfdcbf57471e894999a70d7f676186d:draft 'X'
129 @ 7:591369deedfdcbf57471e894999a70d7f676186d:draft 'X'
136 |
130 |
137 o 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
131 o 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
138 |
132 |
139 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
133 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
140 |/
134 |/
141 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
135 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
142 | |
136 | |
143 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
137 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
144 | |/|
138 | |/|
145 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
139 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
146 |/ /
140 |/ /
147 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
141 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
148 |/
142 |/
149 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
143 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
150
144
151 $ hg histedit 6 --commands - 2>&1 << EOF | fixbundle
145 $ hg histedit 6 --commands - 2>&1 << EOF | fixbundle
152 > base d273e35dcdf2 B
146 > base d273e35dcdf2 B
153 > drop d7a6f907a822 D
147 > drop d7a6f907a822 D
154 > pick 591369deedfd X
148 > pick 591369deedfd X
155 > EOF
149 > EOF
156 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
157 merging B
150 merging B
158 warning: conflicts while merging B! (edit, then use 'hg resolve --mark')
151 warning: conflicts while merging B! (edit, then use 'hg resolve --mark')
159 Fix up the change and run hg histedit --continue
152 Fix up the change and run hg histedit --continue
160 $ hg histedit --abort | fixbundle
153 $ hg histedit --abort | fixbundle
161 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
154 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
162 $ hg tglog
155 $ hg tglog
163 @ 7:591369deedfdcbf57471e894999a70d7f676186d:draft 'X'
156 @ 7:591369deedfdcbf57471e894999a70d7f676186d:draft 'X'
164 |
157 |
165 o 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
158 o 6:d7a6f907a822c4ce6f15662ae45a42aa46d3818a:draft 'D'
166 |
159 |
167 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
160 | o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
168 |/
161 |/
169 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
162 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
170 | |
163 | |
171 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
164 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
172 | |/|
165 | |/|
173 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
166 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
174 |/ /
167 |/ /
175 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
168 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
176 |/
169 |/
177 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
170 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
178
171
179 Continue
172 Continue
180 $ hg histedit 6 --commands - 2>&1 << EOF | fixbundle
173 $ hg histedit 6 --commands - 2>&1 << EOF | fixbundle
181 > base d273e35dcdf2 B
174 > base d273e35dcdf2 B
182 > drop d7a6f907a822 D
175 > drop d7a6f907a822 D
183 > pick 591369deedfd X
176 > pick 591369deedfd X
184 > EOF
177 > EOF
185 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
186 merging B
178 merging B
187 warning: conflicts while merging B! (edit, then use 'hg resolve --mark')
179 warning: conflicts while merging B! (edit, then use 'hg resolve --mark')
188 Fix up the change and run hg histedit --continue
180 Fix up the change and run hg histedit --continue
189 $ echo b2 > B
181 $ echo b2 > B
190 $ hg resolve --mark B
182 $ hg resolve --mark B
191 (no more unresolved files)
183 (no more unresolved files)
192 $ hg histedit --continue | fixbundle
184 $ hg histedit --continue | fixbundle
193 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
185 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
194 $ hg tglog
186 $ hg tglog
195 @ 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
187 @ 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
196 |
188 |
197 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
189 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
198 |
190 |
199 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
191 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
200 | |
192 | |
201 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
193 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
202 | |/|
194 | |/|
203 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
195 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
204 |/ /
196 |/ /
205 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
197 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
206 |/
198 |/
207 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
199 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
208
200
209
201
210 base on a previously picked changeset
202 base on a previously picked changeset
211 $ echo i > i
203 $ echo i > i
212 $ hg add i
204 $ hg add i
213 $ hg commit -m "I"
205 $ hg commit -m "I"
214 $ echo j > j
206 $ echo j > j
215 $ hg add j
207 $ hg add j
216 $ hg commit -m "J"
208 $ hg commit -m "J"
217 $ hg tglog
209 $ hg tglog
218 @ 8:e8c55b19d366b335626e805484110d1d5f6f2ea3:draft 'J'
210 @ 8:e8c55b19d366b335626e805484110d1d5f6f2ea3:draft 'J'
219 |
211 |
220 o 7:b2f90fd8aa85db5569e3cfc30cd1d7739546368e:draft 'I'
212 o 7:b2f90fd8aa85db5569e3cfc30cd1d7739546368e:draft 'I'
221 |
213 |
222 o 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
214 o 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
223 |
215 |
224 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
216 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
225 |
217 |
226 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
218 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
227 | |
219 | |
228 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
220 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
229 | |/|
221 | |/|
230 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
222 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
231 |/ /
223 |/ /
232 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
224 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
233 |/
225 |/
234 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
226 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
235
227
236 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
228 $ hg histedit 5 --commands - 2>&1 << EOF | fixbundle
237 > pick d273e35dcdf2 B
229 > pick d273e35dcdf2 B
238 > pick 03772da75548 X
230 > pick 03772da75548 X
239 > base d273e35dcdf2 B
231 > base d273e35dcdf2 B
240 > pick e8c55b19d366 J
232 > pick e8c55b19d366 J
241 > base d273e35dcdf2 B
233 > base d273e35dcdf2 B
242 > pick b2f90fd8aa85 I
234 > pick b2f90fd8aa85 I
243 > EOF
235 > EOF
244 abort: may not use "base" with changesets within the edited list
236 abort: may not use "base" with changesets within the edited list
245
237
246 $ hg --config experimental.histeditng=False histedit 5 --commands - 2>&1 << EOF | fixbundle
238 $ hg --config experimental.histeditng=False histedit 5 --commands - 2>&1 << EOF | fixbundle
247 > base cd010b8cd998 A
239 > base cd010b8cd998 A
248 > pick d273e35dcdf2 B
240 > pick d273e35dcdf2 B
249 > pick 03772da75548 X
241 > pick 03772da75548 X
250 > pick b2f90fd8aa85 I
242 > pick b2f90fd8aa85 I
251 > pick e8c55b19d366 J
243 > pick e8c55b19d366 J
252 > EOF
244 > EOF
253 abort: unknown action "base"
245 abort: unknown action "base"
254
246
255 $ hg tglog
247 $ hg tglog
256 @ 8:e8c55b19d366b335626e805484110d1d5f6f2ea3:draft 'J'
248 @ 8:e8c55b19d366b335626e805484110d1d5f6f2ea3:draft 'J'
257 |
249 |
258 o 7:b2f90fd8aa85db5569e3cfc30cd1d7739546368e:draft 'I'
250 o 7:b2f90fd8aa85db5569e3cfc30cd1d7739546368e:draft 'I'
259 |
251 |
260 o 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
252 o 6:03772da75548bb42a8f1eacd8c91d0717a147fcd:draft 'X'
261 |
253 |
262 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
254 o 5:d273e35dcdf21a7eb305192ef2e362887cd0a6f8:draft 'B'
263 |
255 |
264 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
256 | o 4:02de42196ebee42ef284b6780a87cdc96e8eaab6:draft 'H'
265 | |
257 | |
266 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
258 | | o 3:eea13746799a9e0bfd88f29d3c2e9dc9389f524f:draft 'G'
267 | |/|
259 | |/|
268 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
260 | o | 2:24b6387c8c8cae37178880f3fa95ded3cb1cf785:draft 'F'
269 |/ /
261 |/ /
270 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
262 | o 1:9520eea781bcca16c1e15acc0ba14335a0e8e5ba:draft 'E'
271 |/
263 |/
272 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
264 o 0:cd010b8cd998f3981a5a8115f94f8da4ab506089:draft 'A'
273
265
@@ -1,460 +1,451 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > EOF
6 > EOF
7
7
8 $ initrepo ()
8 $ initrepo ()
9 > {
9 > {
10 > hg init r
10 > hg init r
11 > cd r
11 > cd r
12 > for x in a b c d e f ; do
12 > for x in a b c d e f ; do
13 > echo $x > $x
13 > echo $x > $x
14 > hg add $x
14 > hg add $x
15 > hg ci -m $x
15 > hg ci -m $x
16 > done
16 > done
17 > }
17 > }
18
18
19 $ initrepo
19 $ initrepo
20
20
21 log before edit
21 log before edit
22 $ hg log --graph
22 $ hg log --graph
23 @ changeset: 5:652413bf663e
23 @ changeset: 5:652413bf663e
24 | tag: tip
24 | tag: tip
25 | user: test
25 | user: test
26 | date: Thu Jan 01 00:00:00 1970 +0000
26 | date: Thu Jan 01 00:00:00 1970 +0000
27 | summary: f
27 | summary: f
28 |
28 |
29 o changeset: 4:e860deea161a
29 o changeset: 4:e860deea161a
30 | user: test
30 | user: test
31 | date: Thu Jan 01 00:00:00 1970 +0000
31 | date: Thu Jan 01 00:00:00 1970 +0000
32 | summary: e
32 | summary: e
33 |
33 |
34 o changeset: 3:055a42cdd887
34 o changeset: 3:055a42cdd887
35 | user: test
35 | user: test
36 | date: Thu Jan 01 00:00:00 1970 +0000
36 | date: Thu Jan 01 00:00:00 1970 +0000
37 | summary: d
37 | summary: d
38 |
38 |
39 o changeset: 2:177f92b77385
39 o changeset: 2:177f92b77385
40 | user: test
40 | user: test
41 | date: Thu Jan 01 00:00:00 1970 +0000
41 | date: Thu Jan 01 00:00:00 1970 +0000
42 | summary: c
42 | summary: c
43 |
43 |
44 o changeset: 1:d2ae7f538514
44 o changeset: 1:d2ae7f538514
45 | user: test
45 | user: test
46 | date: Thu Jan 01 00:00:00 1970 +0000
46 | date: Thu Jan 01 00:00:00 1970 +0000
47 | summary: b
47 | summary: b
48 |
48 |
49 o changeset: 0:cb9a9f314b8b
49 o changeset: 0:cb9a9f314b8b
50 user: test
50 user: test
51 date: Thu Jan 01 00:00:00 1970 +0000
51 date: Thu Jan 01 00:00:00 1970 +0000
52 summary: a
52 summary: a
53
53
54
54
55 show the edit commands offered
55 show the edit commands offered
56 $ HGEDITOR=cat hg histedit 177f92b77385
56 $ HGEDITOR=cat hg histedit 177f92b77385
57 pick 177f92b77385 2 c
57 pick 177f92b77385 2 c
58 pick 055a42cdd887 3 d
58 pick 055a42cdd887 3 d
59 pick e860deea161a 4 e
59 pick e860deea161a 4 e
60 pick 652413bf663e 5 f
60 pick 652413bf663e 5 f
61
61
62 # Edit history between 177f92b77385 and 652413bf663e
62 # Edit history between 177f92b77385 and 652413bf663e
63 #
63 #
64 # Commits are listed from least to most recent
64 # Commits are listed from least to most recent
65 #
65 #
66 # Commands:
66 # Commands:
67 # p, pick = use commit
67 # p, pick = use commit
68 # e, edit = use commit, but stop for amending
68 # e, edit = use commit, but stop for amending
69 # f, fold = use commit, but combine it with the one above
69 # f, fold = use commit, but combine it with the one above
70 # r, roll = like fold, but discard this commit's description
70 # r, roll = like fold, but discard this commit's description
71 # d, drop = remove commit from history
71 # d, drop = remove commit from history
72 # m, mess = edit commit message without changing commit content
72 # m, mess = edit commit message without changing commit content
73 #
73 #
74 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
74 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
75
75
76 edit the history
76 edit the history
77 (use a hacky editor to check histedit-last-edit.txt backup)
77 (use a hacky editor to check histedit-last-edit.txt backup)
78
78
79 $ EDITED="$TESTTMP/editedhistory"
79 $ EDITED="$TESTTMP/editedhistory"
80 $ cat > $EDITED <<EOF
80 $ cat > $EDITED <<EOF
81 > pick 177f92b77385 c
81 > pick 177f92b77385 c
82 > pick e860deea161a e
82 > pick e860deea161a e
83 > pick 652413bf663e f
83 > pick 652413bf663e f
84 > pick 055a42cdd887 d
84 > pick 055a42cdd887 d
85 > EOF
85 > EOF
86 $ HGEDITOR="cat \"$EDITED\" > " hg histedit 177f92b77385 2>&1 | fixbundle
86 $ HGEDITOR="cat \"$EDITED\" > " hg histedit 177f92b77385 2>&1 | fixbundle
87 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
87 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
88 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
88 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
89 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
90 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
91
89
92 rules should end up in .hg/histedit-last-edit.txt:
90 rules should end up in .hg/histedit-last-edit.txt:
93 $ cat .hg/histedit-last-edit.txt
91 $ cat .hg/histedit-last-edit.txt
94 pick 177f92b77385 c
92 pick 177f92b77385 c
95 pick e860deea161a e
93 pick e860deea161a e
96 pick 652413bf663e f
94 pick 652413bf663e f
97 pick 055a42cdd887 d
95 pick 055a42cdd887 d
98
96
99 log after edit
97 log after edit
100 $ hg log --graph
98 $ hg log --graph
101 @ changeset: 5:07114f51870f
99 @ changeset: 5:07114f51870f
102 | tag: tip
100 | tag: tip
103 | user: test
101 | user: test
104 | date: Thu Jan 01 00:00:00 1970 +0000
102 | date: Thu Jan 01 00:00:00 1970 +0000
105 | summary: d
103 | summary: d
106 |
104 |
107 o changeset: 4:8ade9693061e
105 o changeset: 4:8ade9693061e
108 | user: test
106 | user: test
109 | date: Thu Jan 01 00:00:00 1970 +0000
107 | date: Thu Jan 01 00:00:00 1970 +0000
110 | summary: f
108 | summary: f
111 |
109 |
112 o changeset: 3:d8249471110a
110 o changeset: 3:d8249471110a
113 | user: test
111 | user: test
114 | date: Thu Jan 01 00:00:00 1970 +0000
112 | date: Thu Jan 01 00:00:00 1970 +0000
115 | summary: e
113 | summary: e
116 |
114 |
117 o changeset: 2:177f92b77385
115 o changeset: 2:177f92b77385
118 | user: test
116 | user: test
119 | date: Thu Jan 01 00:00:00 1970 +0000
117 | date: Thu Jan 01 00:00:00 1970 +0000
120 | summary: c
118 | summary: c
121 |
119 |
122 o changeset: 1:d2ae7f538514
120 o changeset: 1:d2ae7f538514
123 | user: test
121 | user: test
124 | date: Thu Jan 01 00:00:00 1970 +0000
122 | date: Thu Jan 01 00:00:00 1970 +0000
125 | summary: b
123 | summary: b
126 |
124 |
127 o changeset: 0:cb9a9f314b8b
125 o changeset: 0:cb9a9f314b8b
128 user: test
126 user: test
129 date: Thu Jan 01 00:00:00 1970 +0000
127 date: Thu Jan 01 00:00:00 1970 +0000
130 summary: a
128 summary: a
131
129
132
130
133 put things back
131 put things back
134
132
135 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF | fixbundle
133 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF | fixbundle
136 > pick 177f92b77385 c
134 > pick 177f92b77385 c
137 > pick 07114f51870f d
135 > pick 07114f51870f d
138 > pick d8249471110a e
136 > pick d8249471110a e
139 > pick 8ade9693061e f
137 > pick 8ade9693061e f
140 > EOF
138 > EOF
141 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
139 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
142 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
140 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
143 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
144 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
145
141
146 $ hg log --graph
142 $ hg log --graph
147 @ changeset: 5:7eca9b5b1148
143 @ changeset: 5:7eca9b5b1148
148 | tag: tip
144 | tag: tip
149 | user: test
145 | user: test
150 | date: Thu Jan 01 00:00:00 1970 +0000
146 | date: Thu Jan 01 00:00:00 1970 +0000
151 | summary: f
147 | summary: f
152 |
148 |
153 o changeset: 4:915da888f2de
149 o changeset: 4:915da888f2de
154 | user: test
150 | user: test
155 | date: Thu Jan 01 00:00:00 1970 +0000
151 | date: Thu Jan 01 00:00:00 1970 +0000
156 | summary: e
152 | summary: e
157 |
153 |
158 o changeset: 3:10517e47bbbb
154 o changeset: 3:10517e47bbbb
159 | user: test
155 | user: test
160 | date: Thu Jan 01 00:00:00 1970 +0000
156 | date: Thu Jan 01 00:00:00 1970 +0000
161 | summary: d
157 | summary: d
162 |
158 |
163 o changeset: 2:177f92b77385
159 o changeset: 2:177f92b77385
164 | user: test
160 | user: test
165 | date: Thu Jan 01 00:00:00 1970 +0000
161 | date: Thu Jan 01 00:00:00 1970 +0000
166 | summary: c
162 | summary: c
167 |
163 |
168 o changeset: 1:d2ae7f538514
164 o changeset: 1:d2ae7f538514
169 | user: test
165 | user: test
170 | date: Thu Jan 01 00:00:00 1970 +0000
166 | date: Thu Jan 01 00:00:00 1970 +0000
171 | summary: b
167 | summary: b
172 |
168 |
173 o changeset: 0:cb9a9f314b8b
169 o changeset: 0:cb9a9f314b8b
174 user: test
170 user: test
175 date: Thu Jan 01 00:00:00 1970 +0000
171 date: Thu Jan 01 00:00:00 1970 +0000
176 summary: a
172 summary: a
177
173
178
174
179 slightly different this time
175 slightly different this time
180
176
181 $ hg histedit 177f92b77385 --commands - << EOF 2>&1 | fixbundle
177 $ hg histedit 177f92b77385 --commands - << EOF 2>&1 | fixbundle
182 > pick 10517e47bbbb d
178 > pick 10517e47bbbb d
183 > pick 7eca9b5b1148 f
179 > pick 7eca9b5b1148 f
184 > pick 915da888f2de e
180 > pick 915da888f2de e
185 > pick 177f92b77385 c
181 > pick 177f92b77385 c
186 > EOF
182 > EOF
187 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
183 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
188 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
184 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
189 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
190 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
191 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
192 $ hg log --graph
185 $ hg log --graph
193 @ changeset: 5:38b92f448761
186 @ changeset: 5:38b92f448761
194 | tag: tip
187 | tag: tip
195 | user: test
188 | user: test
196 | date: Thu Jan 01 00:00:00 1970 +0000
189 | date: Thu Jan 01 00:00:00 1970 +0000
197 | summary: c
190 | summary: c
198 |
191 |
199 o changeset: 4:de71b079d9ce
192 o changeset: 4:de71b079d9ce
200 | user: test
193 | user: test
201 | date: Thu Jan 01 00:00:00 1970 +0000
194 | date: Thu Jan 01 00:00:00 1970 +0000
202 | summary: e
195 | summary: e
203 |
196 |
204 o changeset: 3:be9ae3a309c6
197 o changeset: 3:be9ae3a309c6
205 | user: test
198 | user: test
206 | date: Thu Jan 01 00:00:00 1970 +0000
199 | date: Thu Jan 01 00:00:00 1970 +0000
207 | summary: f
200 | summary: f
208 |
201 |
209 o changeset: 2:799205341b6b
202 o changeset: 2:799205341b6b
210 | user: test
203 | user: test
211 | date: Thu Jan 01 00:00:00 1970 +0000
204 | date: Thu Jan 01 00:00:00 1970 +0000
212 | summary: d
205 | summary: d
213 |
206 |
214 o changeset: 1:d2ae7f538514
207 o changeset: 1:d2ae7f538514
215 | user: test
208 | user: test
216 | date: Thu Jan 01 00:00:00 1970 +0000
209 | date: Thu Jan 01 00:00:00 1970 +0000
217 | summary: b
210 | summary: b
218 |
211 |
219 o changeset: 0:cb9a9f314b8b
212 o changeset: 0:cb9a9f314b8b
220 user: test
213 user: test
221 date: Thu Jan 01 00:00:00 1970 +0000
214 date: Thu Jan 01 00:00:00 1970 +0000
222 summary: a
215 summary: a
223
216
224
217
225 keep prevents stripping dead revs
218 keep prevents stripping dead revs
226 $ hg histedit 799205341b6b --keep --commands - 2>&1 << EOF | fixbundle
219 $ hg histedit 799205341b6b --keep --commands - 2>&1 << EOF | fixbundle
227 > pick 799205341b6b d
220 > pick 799205341b6b d
228 > pick be9ae3a309c6 f
221 > pick be9ae3a309c6 f
229 > pick 38b92f448761 c
222 > pick 38b92f448761 c
230 > pick de71b079d9ce e
223 > pick de71b079d9ce e
231 > EOF
224 > EOF
232 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
225 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
233 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
226 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
234 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
235 $ hg log --graph
227 $ hg log --graph
236 @ changeset: 7:803ef1c6fcfd
228 @ changeset: 7:803ef1c6fcfd
237 | tag: tip
229 | tag: tip
238 | user: test
230 | user: test
239 | date: Thu Jan 01 00:00:00 1970 +0000
231 | date: Thu Jan 01 00:00:00 1970 +0000
240 | summary: e
232 | summary: e
241 |
233 |
242 o changeset: 6:ece0b8d93dda
234 o changeset: 6:ece0b8d93dda
243 | parent: 3:be9ae3a309c6
235 | parent: 3:be9ae3a309c6
244 | user: test
236 | user: test
245 | date: Thu Jan 01 00:00:00 1970 +0000
237 | date: Thu Jan 01 00:00:00 1970 +0000
246 | summary: c
238 | summary: c
247 |
239 |
248 | o changeset: 5:38b92f448761
240 | o changeset: 5:38b92f448761
249 | | user: test
241 | | user: test
250 | | date: Thu Jan 01 00:00:00 1970 +0000
242 | | date: Thu Jan 01 00:00:00 1970 +0000
251 | | summary: c
243 | | summary: c
252 | |
244 | |
253 | o changeset: 4:de71b079d9ce
245 | o changeset: 4:de71b079d9ce
254 |/ user: test
246 |/ user: test
255 | date: Thu Jan 01 00:00:00 1970 +0000
247 | date: Thu Jan 01 00:00:00 1970 +0000
256 | summary: e
248 | summary: e
257 |
249 |
258 o changeset: 3:be9ae3a309c6
250 o changeset: 3:be9ae3a309c6
259 | user: test
251 | user: test
260 | date: Thu Jan 01 00:00:00 1970 +0000
252 | date: Thu Jan 01 00:00:00 1970 +0000
261 | summary: f
253 | summary: f
262 |
254 |
263 o changeset: 2:799205341b6b
255 o changeset: 2:799205341b6b
264 | user: test
256 | user: test
265 | date: Thu Jan 01 00:00:00 1970 +0000
257 | date: Thu Jan 01 00:00:00 1970 +0000
266 | summary: d
258 | summary: d
267 |
259 |
268 o changeset: 1:d2ae7f538514
260 o changeset: 1:d2ae7f538514
269 | user: test
261 | user: test
270 | date: Thu Jan 01 00:00:00 1970 +0000
262 | date: Thu Jan 01 00:00:00 1970 +0000
271 | summary: b
263 | summary: b
272 |
264 |
273 o changeset: 0:cb9a9f314b8b
265 o changeset: 0:cb9a9f314b8b
274 user: test
266 user: test
275 date: Thu Jan 01 00:00:00 1970 +0000
267 date: Thu Jan 01 00:00:00 1970 +0000
276 summary: a
268 summary: a
277
269
278
270
279 try with --rev
271 try with --rev
280 $ hg histedit --commands - --rev -2 2>&1 <<EOF | fixbundle
272 $ hg histedit --commands - --rev -2 2>&1 <<EOF | fixbundle
281 > pick de71b079d9ce e
273 > pick de71b079d9ce e
282 > pick 38b92f448761 c
274 > pick 38b92f448761 c
283 > EOF
275 > EOF
284 abort: may not use "pick" with changesets other than the ones listed
276 abort: may not use "pick" with changesets other than the ones listed
285 $ hg log --graph
277 $ hg log --graph
286 @ changeset: 7:803ef1c6fcfd
278 @ changeset: 7:803ef1c6fcfd
287 | tag: tip
279 | tag: tip
288 | user: test
280 | user: test
289 | date: Thu Jan 01 00:00:00 1970 +0000
281 | date: Thu Jan 01 00:00:00 1970 +0000
290 | summary: e
282 | summary: e
291 |
283 |
292 o changeset: 6:ece0b8d93dda
284 o changeset: 6:ece0b8d93dda
293 | parent: 3:be9ae3a309c6
285 | parent: 3:be9ae3a309c6
294 | user: test
286 | user: test
295 | date: Thu Jan 01 00:00:00 1970 +0000
287 | date: Thu Jan 01 00:00:00 1970 +0000
296 | summary: c
288 | summary: c
297 |
289 |
298 | o changeset: 5:38b92f448761
290 | o changeset: 5:38b92f448761
299 | | user: test
291 | | user: test
300 | | date: Thu Jan 01 00:00:00 1970 +0000
292 | | date: Thu Jan 01 00:00:00 1970 +0000
301 | | summary: c
293 | | summary: c
302 | |
294 | |
303 | o changeset: 4:de71b079d9ce
295 | o changeset: 4:de71b079d9ce
304 |/ user: test
296 |/ user: test
305 | date: Thu Jan 01 00:00:00 1970 +0000
297 | date: Thu Jan 01 00:00:00 1970 +0000
306 | summary: e
298 | summary: e
307 |
299 |
308 o changeset: 3:be9ae3a309c6
300 o changeset: 3:be9ae3a309c6
309 | user: test
301 | user: test
310 | date: Thu Jan 01 00:00:00 1970 +0000
302 | date: Thu Jan 01 00:00:00 1970 +0000
311 | summary: f
303 | summary: f
312 |
304 |
313 o changeset: 2:799205341b6b
305 o changeset: 2:799205341b6b
314 | user: test
306 | user: test
315 | date: Thu Jan 01 00:00:00 1970 +0000
307 | date: Thu Jan 01 00:00:00 1970 +0000
316 | summary: d
308 | summary: d
317 |
309 |
318 o changeset: 1:d2ae7f538514
310 o changeset: 1:d2ae7f538514
319 | user: test
311 | user: test
320 | date: Thu Jan 01 00:00:00 1970 +0000
312 | date: Thu Jan 01 00:00:00 1970 +0000
321 | summary: b
313 | summary: b
322 |
314 |
323 o changeset: 0:cb9a9f314b8b
315 o changeset: 0:cb9a9f314b8b
324 user: test
316 user: test
325 date: Thu Jan 01 00:00:00 1970 +0000
317 date: Thu Jan 01 00:00:00 1970 +0000
326 summary: a
318 summary: a
327
319
328 Verify that revsetalias entries work with histedit:
320 Verify that revsetalias entries work with histedit:
329 $ cat >> $HGRCPATH <<EOF
321 $ cat >> $HGRCPATH <<EOF
330 > [revsetalias]
322 > [revsetalias]
331 > grandparent(ARG) = p1(p1(ARG))
323 > grandparent(ARG) = p1(p1(ARG))
332 > EOF
324 > EOF
333 $ echo extra commit >> c
325 $ echo extra commit >> c
334 $ hg ci -m 'extra commit to c'
326 $ hg ci -m 'extra commit to c'
335 $ HGEDITOR=cat hg histedit 'grandparent(.)'
327 $ HGEDITOR=cat hg histedit 'grandparent(.)'
336 pick ece0b8d93dda 6 c
328 pick ece0b8d93dda 6 c
337 pick 803ef1c6fcfd 7 e
329 pick 803ef1c6fcfd 7 e
338 pick 9c863c565126 8 extra commit to c
330 pick 9c863c565126 8 extra commit to c
339
331
340 # Edit history between ece0b8d93dda and 9c863c565126
332 # Edit history between ece0b8d93dda and 9c863c565126
341 #
333 #
342 # Commits are listed from least to most recent
334 # Commits are listed from least to most recent
343 #
335 #
344 # Commands:
336 # Commands:
345 # p, pick = use commit
337 # p, pick = use commit
346 # e, edit = use commit, but stop for amending
338 # e, edit = use commit, but stop for amending
347 # f, fold = use commit, but combine it with the one above
339 # f, fold = use commit, but combine it with the one above
348 # r, roll = like fold, but discard this commit's description
340 # r, roll = like fold, but discard this commit's description
349 # d, drop = remove commit from history
341 # d, drop = remove commit from history
350 # m, mess = edit commit message without changing commit content
342 # m, mess = edit commit message without changing commit content
351 #
343 #
352 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
344 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
353
345
354 should also work if a commit message is missing
346 should also work if a commit message is missing
355 $ BUNDLE="$TESTDIR/missing-comment.hg"
347 $ BUNDLE="$TESTDIR/missing-comment.hg"
356 $ hg init missing
348 $ hg init missing
357 $ cd missing
349 $ cd missing
358 $ hg unbundle $BUNDLE
350 $ hg unbundle $BUNDLE
359 adding changesets
351 adding changesets
360 adding manifests
352 adding manifests
361 adding file changes
353 adding file changes
362 added 3 changesets with 3 changes to 1 files
354 added 3 changesets with 3 changes to 1 files
363 (run 'hg update' to get a working copy)
355 (run 'hg update' to get a working copy)
364 $ hg co tip
356 $ hg co tip
365 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
357 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
366 $ hg log --graph
358 $ hg log --graph
367 @ changeset: 2:bd22688093b3
359 @ changeset: 2:bd22688093b3
368 | tag: tip
360 | tag: tip
369 | user: Robert Altman <robert.altman@telventDTN.com>
361 | user: Robert Altman <robert.altman@telventDTN.com>
370 | date: Mon Nov 28 16:40:04 2011 +0000
362 | date: Mon Nov 28 16:40:04 2011 +0000
371 | summary: Update file.
363 | summary: Update file.
372 |
364 |
373 o changeset: 1:3b3e956f9171
365 o changeset: 1:3b3e956f9171
374 | user: Robert Altman <robert.altman@telventDTN.com>
366 | user: Robert Altman <robert.altman@telventDTN.com>
375 | date: Mon Nov 28 16:37:57 2011 +0000
367 | date: Mon Nov 28 16:37:57 2011 +0000
376 |
368 |
377 o changeset: 0:141947992243
369 o changeset: 0:141947992243
378 user: Robert Altman <robert.altman@telventDTN.com>
370 user: Robert Altman <robert.altman@telventDTN.com>
379 date: Mon Nov 28 16:35:28 2011 +0000
371 date: Mon Nov 28 16:35:28 2011 +0000
380 summary: Checked in text file
372 summary: Checked in text file
381
373
382 $ hg histedit 0
374 $ hg histedit 0
383 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
375 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
384 $ cd ..
376 $ cd ..
385
377
386 $ cd ..
378 $ cd ..
387
379
388
380
389 Test to make sure folding renames doesn't cause bogus conflicts (issue4251):
381 Test to make sure folding renames doesn't cause bogus conflicts (issue4251):
390 $ hg init issue4251
382 $ hg init issue4251
391 $ cd issue4251
383 $ cd issue4251
392
384
393 $ mkdir initial-dir
385 $ mkdir initial-dir
394 $ echo foo > initial-dir/initial-file
386 $ echo foo > initial-dir/initial-file
395 $ hg add initial-dir/initial-file
387 $ hg add initial-dir/initial-file
396 $ hg commit -m "initial commit"
388 $ hg commit -m "initial commit"
397
389
398 Move the file to a new directory, and in the same commit, change its content:
390 Move the file to a new directory, and in the same commit, change its content:
399 $ mkdir another-dir
391 $ mkdir another-dir
400 $ hg mv initial-dir/initial-file another-dir/
392 $ hg mv initial-dir/initial-file another-dir/
401 $ echo changed > another-dir/initial-file
393 $ echo changed > another-dir/initial-file
402 $ hg commit -m "moved and changed"
394 $ hg commit -m "moved and changed"
403
395
404 Rename the file:
396 Rename the file:
405 $ hg mv another-dir/initial-file another-dir/renamed-file
397 $ hg mv another-dir/initial-file another-dir/renamed-file
406 $ hg commit -m "renamed"
398 $ hg commit -m "renamed"
407
399
408 Now, let's try to fold the second commit into the first:
400 Now, let's try to fold the second commit into the first:
409 $ cat > editor.sh <<EOF
401 $ cat > editor.sh <<EOF
410 > #!/bin/sh
402 > #!/bin/sh
411 > cat > \$1 <<ENDOF
403 > cat > \$1 <<ENDOF
412 > pick b0f4233702ca 0 initial commit
404 > pick b0f4233702ca 0 initial commit
413 > fold 5e8704a8f2d2 1 moved and changed
405 > fold 5e8704a8f2d2 1 moved and changed
414 > pick 40e7299e8fa7 2 renamed
406 > pick 40e7299e8fa7 2 renamed
415 > ENDOF
407 > ENDOF
416 > EOF
408 > EOF
417
409
418 $ HGEDITOR="sh ./editor.sh" hg histedit 0
410 $ HGEDITOR="sh ./editor.sh" hg histedit 0
419 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
411 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
420 adding another-dir/initial-file (glob)
412 adding another-dir/initial-file (glob)
421 removing initial-dir/initial-file (glob)
413 removing initial-dir/initial-file (glob)
422 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
414 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
423 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
415 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
424 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
416 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
425 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
426 saved backup bundle to $TESTTMP/issue4251/.hg/strip-backup/*-backup.hg (glob)
417 saved backup bundle to $TESTTMP/issue4251/.hg/strip-backup/*-backup.hg (glob)
427 saved backup bundle to $TESTTMP/issue4251/.hg/strip-backup/*-backup.hg (glob)
418 saved backup bundle to $TESTTMP/issue4251/.hg/strip-backup/*-backup.hg (glob)
428
419
429 $ hg --config diff.git=yes export 0
420 $ hg --config diff.git=yes export 0
430 # HG changeset patch
421 # HG changeset patch
431 # User test
422 # User test
432 # Date 0 0
423 # Date 0 0
433 # Thu Jan 01 00:00:00 1970 +0000
424 # Thu Jan 01 00:00:00 1970 +0000
434 # Node ID fffadc26f8f85623ce60b028a3f1ccc3730f8530
425 # Node ID fffadc26f8f85623ce60b028a3f1ccc3730f8530
435 # Parent 0000000000000000000000000000000000000000
426 # Parent 0000000000000000000000000000000000000000
436 pick b0f4233702ca 0 initial commit
427 pick b0f4233702ca 0 initial commit
437 fold 5e8704a8f2d2 1 moved and changed
428 fold 5e8704a8f2d2 1 moved and changed
438 pick 40e7299e8fa7 2 renamed
429 pick 40e7299e8fa7 2 renamed
439
430
440 diff --git a/another-dir/initial-file b/another-dir/initial-file
431 diff --git a/another-dir/initial-file b/another-dir/initial-file
441 new file mode 100644
432 new file mode 100644
442 --- /dev/null
433 --- /dev/null
443 +++ b/another-dir/initial-file
434 +++ b/another-dir/initial-file
444 @@ -0,0 +1,1 @@
435 @@ -0,0 +1,1 @@
445 +changed
436 +changed
446
437
447 $ hg --config diff.git=yes export 1
438 $ hg --config diff.git=yes export 1
448 # HG changeset patch
439 # HG changeset patch
449 # User test
440 # User test
450 # Date 0 0
441 # Date 0 0
451 # Thu Jan 01 00:00:00 1970 +0000
442 # Thu Jan 01 00:00:00 1970 +0000
452 # Node ID 9b730d82b00af8a2766facebfa47cc124405a118
443 # Node ID 9b730d82b00af8a2766facebfa47cc124405a118
453 # Parent fffadc26f8f85623ce60b028a3f1ccc3730f8530
444 # Parent fffadc26f8f85623ce60b028a3f1ccc3730f8530
454 renamed
445 renamed
455
446
456 diff --git a/another-dir/initial-file b/another-dir/renamed-file
447 diff --git a/another-dir/initial-file b/another-dir/renamed-file
457 rename from another-dir/initial-file
448 rename from another-dir/initial-file
458 rename to another-dir/renamed-file
449 rename to another-dir/renamed-file
459
450
460 $ cd ..
451 $ cd ..
@@ -1,154 +1,152 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > EOF
6 > EOF
7
7
8 $ initrepo ()
8 $ initrepo ()
9 > {
9 > {
10 > hg init r
10 > hg init r
11 > cd r
11 > cd r
12 > for x in a b c d e f ; do
12 > for x in a b c d e f ; do
13 > echo $x > $x
13 > echo $x > $x
14 > hg add $x
14 > hg add $x
15 > hg ci -m $x
15 > hg ci -m $x
16 > done
16 > done
17 > }
17 > }
18
18
19 $ initrepo
19 $ initrepo
20
20
21 log before edit
21 log before edit
22 $ hg log --graph
22 $ hg log --graph
23 @ changeset: 5:652413bf663e
23 @ changeset: 5:652413bf663e
24 | tag: tip
24 | tag: tip
25 | user: test
25 | user: test
26 | date: Thu Jan 01 00:00:00 1970 +0000
26 | date: Thu Jan 01 00:00:00 1970 +0000
27 | summary: f
27 | summary: f
28 |
28 |
29 o changeset: 4:e860deea161a
29 o changeset: 4:e860deea161a
30 | user: test
30 | user: test
31 | date: Thu Jan 01 00:00:00 1970 +0000
31 | date: Thu Jan 01 00:00:00 1970 +0000
32 | summary: e
32 | summary: e
33 |
33 |
34 o changeset: 3:055a42cdd887
34 o changeset: 3:055a42cdd887
35 | user: test
35 | user: test
36 | date: Thu Jan 01 00:00:00 1970 +0000
36 | date: Thu Jan 01 00:00:00 1970 +0000
37 | summary: d
37 | summary: d
38 |
38 |
39 o changeset: 2:177f92b77385
39 o changeset: 2:177f92b77385
40 | user: test
40 | user: test
41 | date: Thu Jan 01 00:00:00 1970 +0000
41 | date: Thu Jan 01 00:00:00 1970 +0000
42 | summary: c
42 | summary: c
43 |
43 |
44 o changeset: 1:d2ae7f538514
44 o changeset: 1:d2ae7f538514
45 | user: test
45 | user: test
46 | date: Thu Jan 01 00:00:00 1970 +0000
46 | date: Thu Jan 01 00:00:00 1970 +0000
47 | summary: b
47 | summary: b
48 |
48 |
49 o changeset: 0:cb9a9f314b8b
49 o changeset: 0:cb9a9f314b8b
50 user: test
50 user: test
51 date: Thu Jan 01 00:00:00 1970 +0000
51 date: Thu Jan 01 00:00:00 1970 +0000
52 summary: a
52 summary: a
53
53
54
54
55 edit the history
55 edit the history
56 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF | fixbundle
56 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF | fixbundle
57 > drop 177f92b77385 c
57 > drop 177f92b77385 c
58 > pick e860deea161a e
58 > pick e860deea161a e
59 > pick 652413bf663e f
59 > pick 652413bf663e f
60 > pick 055a42cdd887 d
60 > pick 055a42cdd887 d
61 > EOF
61 > EOF
62 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
62 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
63 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
63 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
64 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
65 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
66
64
67 log after edit
65 log after edit
68 $ hg log --graph
66 $ hg log --graph
69 @ changeset: 4:f518305ce889
67 @ changeset: 4:f518305ce889
70 | tag: tip
68 | tag: tip
71 | user: test
69 | user: test
72 | date: Thu Jan 01 00:00:00 1970 +0000
70 | date: Thu Jan 01 00:00:00 1970 +0000
73 | summary: d
71 | summary: d
74 |
72 |
75 o changeset: 3:a4f7421b80f7
73 o changeset: 3:a4f7421b80f7
76 | user: test
74 | user: test
77 | date: Thu Jan 01 00:00:00 1970 +0000
75 | date: Thu Jan 01 00:00:00 1970 +0000
78 | summary: f
76 | summary: f
79 |
77 |
80 o changeset: 2:ee283cb5f2d5
78 o changeset: 2:ee283cb5f2d5
81 | user: test
79 | user: test
82 | date: Thu Jan 01 00:00:00 1970 +0000
80 | date: Thu Jan 01 00:00:00 1970 +0000
83 | summary: e
81 | summary: e
84 |
82 |
85 o changeset: 1:d2ae7f538514
83 o changeset: 1:d2ae7f538514
86 | user: test
84 | user: test
87 | date: Thu Jan 01 00:00:00 1970 +0000
85 | date: Thu Jan 01 00:00:00 1970 +0000
88 | summary: b
86 | summary: b
89 |
87 |
90 o changeset: 0:cb9a9f314b8b
88 o changeset: 0:cb9a9f314b8b
91 user: test
89 user: test
92 date: Thu Jan 01 00:00:00 1970 +0000
90 date: Thu Jan 01 00:00:00 1970 +0000
93 summary: a
91 summary: a
94
92
95
93
96 Check histedit_source
94 Check histedit_source
97
95
98 $ hg log --debug --rev f518305ce889
96 $ hg log --debug --rev f518305ce889
99 changeset: 4:f518305ce889c07cb5bd05522176d75590ef3324
97 changeset: 4:f518305ce889c07cb5bd05522176d75590ef3324
100 tag: tip
98 tag: tip
101 phase: draft
99 phase: draft
102 parent: 3:a4f7421b80f79fcc59fff01bcbf4a53d127dd6d3
100 parent: 3:a4f7421b80f79fcc59fff01bcbf4a53d127dd6d3
103 parent: -1:0000000000000000000000000000000000000000
101 parent: -1:0000000000000000000000000000000000000000
104 manifest: 4:d3d4f51c157ff242c32ff745d4799aaa26ccda44
102 manifest: 4:d3d4f51c157ff242c32ff745d4799aaa26ccda44
105 user: test
103 user: test
106 date: Thu Jan 01 00:00:00 1970 +0000
104 date: Thu Jan 01 00:00:00 1970 +0000
107 files+: d
105 files+: d
108 extra: branch=default
106 extra: branch=default
109 extra: histedit_source=055a42cdd88768532f9cf79daa407fc8d138de9b
107 extra: histedit_source=055a42cdd88768532f9cf79daa407fc8d138de9b
110 description:
108 description:
111 d
109 d
112
110
113
111
114
112
115 manifest after edit
113 manifest after edit
116 $ hg manifest
114 $ hg manifest
117 a
115 a
118 b
116 b
119 d
117 d
120 e
118 e
121 f
119 f
122
120
123 Drop the last changeset
121 Drop the last changeset
124
122
125 $ hg histedit ee283cb5f2d5 --commands - 2>&1 << EOF | fixbundle
123 $ hg histedit ee283cb5f2d5 --commands - 2>&1 << EOF | fixbundle
126 > pick ee283cb5f2d5 e
124 > pick ee283cb5f2d5 e
127 > pick a4f7421b80f7 f
125 > pick a4f7421b80f7 f
128 > drop f518305ce889 d
126 > drop f518305ce889 d
129 > EOF
127 > EOF
130 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
128 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
131 $ hg log --graph
129 $ hg log --graph
132 @ changeset: 3:a4f7421b80f7
130 @ changeset: 3:a4f7421b80f7
133 | tag: tip
131 | tag: tip
134 | user: test
132 | user: test
135 | date: Thu Jan 01 00:00:00 1970 +0000
133 | date: Thu Jan 01 00:00:00 1970 +0000
136 | summary: f
134 | summary: f
137 |
135 |
138 o changeset: 2:ee283cb5f2d5
136 o changeset: 2:ee283cb5f2d5
139 | user: test
137 | user: test
140 | date: Thu Jan 01 00:00:00 1970 +0000
138 | date: Thu Jan 01 00:00:00 1970 +0000
141 | summary: e
139 | summary: e
142 |
140 |
143 o changeset: 1:d2ae7f538514
141 o changeset: 1:d2ae7f538514
144 | user: test
142 | user: test
145 | date: Thu Jan 01 00:00:00 1970 +0000
143 | date: Thu Jan 01 00:00:00 1970 +0000
146 | summary: b
144 | summary: b
147 |
145 |
148 o changeset: 0:cb9a9f314b8b
146 o changeset: 0:cb9a9f314b8b
149 user: test
147 user: test
150 date: Thu Jan 01 00:00:00 1970 +0000
148 date: Thu Jan 01 00:00:00 1970 +0000
151 summary: a
149 summary: a
152
150
153
151
154 $ cd ..
152 $ cd ..
@@ -1,483 +1,482 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > strip=
6 > strip=
7 > EOF
7 > EOF
8
8
9 $ initrepo ()
9 $ initrepo ()
10 > {
10 > {
11 > hg init r
11 > hg init r
12 > cd r
12 > cd r
13 > for x in a b c d e f g; do
13 > for x in a b c d e f g; do
14 > echo $x > $x
14 > echo $x > $x
15 > hg add $x
15 > hg add $x
16 > hg ci -m $x
16 > hg ci -m $x
17 > done
17 > done
18 > }
18 > }
19
19
20 $ initrepo
20 $ initrepo
21
21
22 log before edit
22 log before edit
23 $ hg log --graph
23 $ hg log --graph
24 @ changeset: 6:3c6a8ed2ebe8
24 @ changeset: 6:3c6a8ed2ebe8
25 | tag: tip
25 | tag: tip
26 | user: test
26 | user: test
27 | date: Thu Jan 01 00:00:00 1970 +0000
27 | date: Thu Jan 01 00:00:00 1970 +0000
28 | summary: g
28 | summary: g
29 |
29 |
30 o changeset: 5:652413bf663e
30 o changeset: 5:652413bf663e
31 | user: test
31 | user: test
32 | date: Thu Jan 01 00:00:00 1970 +0000
32 | date: Thu Jan 01 00:00:00 1970 +0000
33 | summary: f
33 | summary: f
34 |
34 |
35 o changeset: 4:e860deea161a
35 o changeset: 4:e860deea161a
36 | user: test
36 | user: test
37 | date: Thu Jan 01 00:00:00 1970 +0000
37 | date: Thu Jan 01 00:00:00 1970 +0000
38 | summary: e
38 | summary: e
39 |
39 |
40 o changeset: 3:055a42cdd887
40 o changeset: 3:055a42cdd887
41 | user: test
41 | user: test
42 | date: Thu Jan 01 00:00:00 1970 +0000
42 | date: Thu Jan 01 00:00:00 1970 +0000
43 | summary: d
43 | summary: d
44 |
44 |
45 o changeset: 2:177f92b77385
45 o changeset: 2:177f92b77385
46 | user: test
46 | user: test
47 | date: Thu Jan 01 00:00:00 1970 +0000
47 | date: Thu Jan 01 00:00:00 1970 +0000
48 | summary: c
48 | summary: c
49 |
49 |
50 o changeset: 1:d2ae7f538514
50 o changeset: 1:d2ae7f538514
51 | user: test
51 | user: test
52 | date: Thu Jan 01 00:00:00 1970 +0000
52 | date: Thu Jan 01 00:00:00 1970 +0000
53 | summary: b
53 | summary: b
54 |
54 |
55 o changeset: 0:cb9a9f314b8b
55 o changeset: 0:cb9a9f314b8b
56 user: test
56 user: test
57 date: Thu Jan 01 00:00:00 1970 +0000
57 date: Thu Jan 01 00:00:00 1970 +0000
58 summary: a
58 summary: a
59
59
60
60
61 edit the history
61 edit the history
62 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF| fixbundle
62 $ hg histedit 177f92b77385 --commands - 2>&1 << EOF| fixbundle
63 > pick 177f92b77385 c
63 > pick 177f92b77385 c
64 > pick 055a42cdd887 d
64 > pick 055a42cdd887 d
65 > edit e860deea161a e
65 > edit e860deea161a e
66 > pick 652413bf663e f
66 > pick 652413bf663e f
67 > pick 3c6a8ed2ebe8 g
67 > pick 3c6a8ed2ebe8 g
68 > EOF
68 > EOF
69 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
69 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
70 Make changes as needed, you may commit or record as needed now.
70 Make changes as needed, you may commit or record as needed now.
71 When you are finished, run hg histedit --continue to resume.
71 When you are finished, run hg histedit --continue to resume.
72
72
73 edit the plan via the editor
73 edit the plan via the editor
74 $ cat >> $TESTTMP/editplan.sh <<EOF
74 $ cat >> $TESTTMP/editplan.sh <<EOF
75 > cat > \$1 <<EOF2
75 > cat > \$1 <<EOF2
76 > drop e860deea161a e
76 > drop e860deea161a e
77 > drop 652413bf663e f
77 > drop 652413bf663e f
78 > drop 3c6a8ed2ebe8 g
78 > drop 3c6a8ed2ebe8 g
79 > EOF2
79 > EOF2
80 > EOF
80 > EOF
81 $ HGEDITOR="sh $TESTTMP/editplan.sh" hg histedit --edit-plan
81 $ HGEDITOR="sh $TESTTMP/editplan.sh" hg histedit --edit-plan
82 $ cat .hg/histedit-state
82 $ cat .hg/histedit-state
83 v1
83 v1
84 055a42cdd88768532f9cf79daa407fc8d138de9b
84 055a42cdd88768532f9cf79daa407fc8d138de9b
85 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
85 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
86 False
86 False
87 3
87 3
88 drop
88 drop
89 e860deea161a2f77de56603b340ebbb4536308ae
89 e860deea161a2f77de56603b340ebbb4536308ae
90 drop
90 drop
91 652413bf663ef2a641cab26574e46d5f5a64a55a
91 652413bf663ef2a641cab26574e46d5f5a64a55a
92 drop
92 drop
93 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
93 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
94 0
94 0
95 strip-backup/177f92b77385-0ebe6a8f-histedit.hg
95 strip-backup/177f92b77385-0ebe6a8f-histedit.hg
96
96
97 edit the plan via --commands
97 edit the plan via --commands
98 $ hg histedit --edit-plan --commands - 2>&1 << EOF
98 $ hg histedit --edit-plan --commands - 2>&1 << EOF
99 > edit e860deea161a e
99 > edit e860deea161a e
100 > pick 652413bf663e f
100 > pick 652413bf663e f
101 > drop 3c6a8ed2ebe8 g
101 > drop 3c6a8ed2ebe8 g
102 > EOF
102 > EOF
103 $ cat .hg/histedit-state
103 $ cat .hg/histedit-state
104 v1
104 v1
105 055a42cdd88768532f9cf79daa407fc8d138de9b
105 055a42cdd88768532f9cf79daa407fc8d138de9b
106 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
106 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
107 False
107 False
108 3
108 3
109 edit
109 edit
110 e860deea161a2f77de56603b340ebbb4536308ae
110 e860deea161a2f77de56603b340ebbb4536308ae
111 pick
111 pick
112 652413bf663ef2a641cab26574e46d5f5a64a55a
112 652413bf663ef2a641cab26574e46d5f5a64a55a
113 drop
113 drop
114 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
114 3c6a8ed2ebe862cc949d2caa30775dd6f16fb799
115 0
115 0
116 strip-backup/177f92b77385-0ebe6a8f-histedit.hg
116 strip-backup/177f92b77385-0ebe6a8f-histedit.hg
117
117
118 Go at a random point and try to continue
118 Go at a random point and try to continue
119
119
120 $ hg id -n
120 $ hg id -n
121 3+
121 3+
122 $ hg up 0
122 $ hg up 0
123 abort: histedit in progress
123 abort: histedit in progress
124 (use 'hg histedit --continue' or 'hg histedit --abort')
124 (use 'hg histedit --continue' or 'hg histedit --abort')
125 [255]
125 [255]
126
126
127 Try to delete necessary commit
127 Try to delete necessary commit
128 $ hg strip -r 652413b
128 $ hg strip -r 652413b
129 abort: histedit in progress, can't strip 652413bf663e
129 abort: histedit in progress, can't strip 652413bf663e
130 [255]
130 [255]
131
131
132 commit, then edit the revision
132 commit, then edit the revision
133 $ hg ci -m 'wat'
133 $ hg ci -m 'wat'
134 created new head
134 created new head
135 $ echo a > e
135 $ echo a > e
136
136
137 qnew should fail while we're in the middle of the edit step
137 qnew should fail while we're in the middle of the edit step
138
138
139 $ hg --config extensions.mq= qnew please-fail
139 $ hg --config extensions.mq= qnew please-fail
140 abort: histedit in progress
140 abort: histedit in progress
141 (use 'hg histedit --continue' or 'hg histedit --abort')
141 (use 'hg histedit --continue' or 'hg histedit --abort')
142 [255]
142 [255]
143 $ HGEDITOR='echo foobaz > ' hg histedit --continue 2>&1 | fixbundle
143 $ HGEDITOR='echo foobaz > ' hg histedit --continue 2>&1 | fixbundle
144 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
144 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
145 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
146
145
147 $ hg log --graph
146 $ hg log --graph
148 @ changeset: 6:b5f70786f9b0
147 @ changeset: 6:b5f70786f9b0
149 | tag: tip
148 | tag: tip
150 | user: test
149 | user: test
151 | date: Thu Jan 01 00:00:00 1970 +0000
150 | date: Thu Jan 01 00:00:00 1970 +0000
152 | summary: f
151 | summary: f
153 |
152 |
154 o changeset: 5:a5e1ba2f7afb
153 o changeset: 5:a5e1ba2f7afb
155 | user: test
154 | user: test
156 | date: Thu Jan 01 00:00:00 1970 +0000
155 | date: Thu Jan 01 00:00:00 1970 +0000
157 | summary: foobaz
156 | summary: foobaz
158 |
157 |
159 o changeset: 4:1a60820cd1f6
158 o changeset: 4:1a60820cd1f6
160 | user: test
159 | user: test
161 | date: Thu Jan 01 00:00:00 1970 +0000
160 | date: Thu Jan 01 00:00:00 1970 +0000
162 | summary: wat
161 | summary: wat
163 |
162 |
164 o changeset: 3:055a42cdd887
163 o changeset: 3:055a42cdd887
165 | user: test
164 | user: test
166 | date: Thu Jan 01 00:00:00 1970 +0000
165 | date: Thu Jan 01 00:00:00 1970 +0000
167 | summary: d
166 | summary: d
168 |
167 |
169 o changeset: 2:177f92b77385
168 o changeset: 2:177f92b77385
170 | user: test
169 | user: test
171 | date: Thu Jan 01 00:00:00 1970 +0000
170 | date: Thu Jan 01 00:00:00 1970 +0000
172 | summary: c
171 | summary: c
173 |
172 |
174 o changeset: 1:d2ae7f538514
173 o changeset: 1:d2ae7f538514
175 | user: test
174 | user: test
176 | date: Thu Jan 01 00:00:00 1970 +0000
175 | date: Thu Jan 01 00:00:00 1970 +0000
177 | summary: b
176 | summary: b
178 |
177 |
179 o changeset: 0:cb9a9f314b8b
178 o changeset: 0:cb9a9f314b8b
180 user: test
179 user: test
181 date: Thu Jan 01 00:00:00 1970 +0000
180 date: Thu Jan 01 00:00:00 1970 +0000
182 summary: a
181 summary: a
183
182
184
183
185 $ hg cat e
184 $ hg cat e
186 a
185 a
187
186
188 Stripping necessary commits should not break --abort
187 Stripping necessary commits should not break --abort
189
188
190 $ hg histedit 1a60820cd1f6 --commands - 2>&1 << EOF| fixbundle
189 $ hg histedit 1a60820cd1f6 --commands - 2>&1 << EOF| fixbundle
191 > edit 1a60820cd1f6 wat
190 > edit 1a60820cd1f6 wat
192 > pick a5e1ba2f7afb foobaz
191 > pick a5e1ba2f7afb foobaz
193 > pick b5f70786f9b0 g
192 > pick b5f70786f9b0 g
194 > EOF
193 > EOF
195 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
194 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
196 Make changes as needed, you may commit or record as needed now.
195 Make changes as needed, you may commit or record as needed now.
197 When you are finished, run hg histedit --continue to resume.
196 When you are finished, run hg histedit --continue to resume.
198
197
199 $ mv .hg/histedit-state .hg/histedit-state.bak
198 $ mv .hg/histedit-state .hg/histedit-state.bak
200 $ hg strip -q -r b5f70786f9b0
199 $ hg strip -q -r b5f70786f9b0
201 $ mv .hg/histedit-state.bak .hg/histedit-state
200 $ mv .hg/histedit-state.bak .hg/histedit-state
202 $ hg histedit --abort
201 $ hg histedit --abort
203 adding changesets
202 adding changesets
204 adding manifests
203 adding manifests
205 adding file changes
204 adding file changes
206 added 1 changesets with 1 changes to 3 files
205 added 1 changesets with 1 changes to 3 files
207 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
206 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
208 $ hg log -r .
207 $ hg log -r .
209 changeset: 6:b5f70786f9b0
208 changeset: 6:b5f70786f9b0
210 tag: tip
209 tag: tip
211 user: test
210 user: test
212 date: Thu Jan 01 00:00:00 1970 +0000
211 date: Thu Jan 01 00:00:00 1970 +0000
213 summary: f
212 summary: f
214
213
215
214
216 check histedit_source
215 check histedit_source
217
216
218 $ hg log --debug --rev 5
217 $ hg log --debug --rev 5
219 changeset: 5:a5e1ba2f7afb899ef1581cea528fd885d2fca70d
218 changeset: 5:a5e1ba2f7afb899ef1581cea528fd885d2fca70d
220 phase: draft
219 phase: draft
221 parent: 4:1a60820cd1f6004a362aa622ebc47d59bc48eb34
220 parent: 4:1a60820cd1f6004a362aa622ebc47d59bc48eb34
222 parent: -1:0000000000000000000000000000000000000000
221 parent: -1:0000000000000000000000000000000000000000
223 manifest: 5:5ad3be8791f39117565557781f5464363b918a45
222 manifest: 5:5ad3be8791f39117565557781f5464363b918a45
224 user: test
223 user: test
225 date: Thu Jan 01 00:00:00 1970 +0000
224 date: Thu Jan 01 00:00:00 1970 +0000
226 files: e
225 files: e
227 extra: branch=default
226 extra: branch=default
228 extra: histedit_source=e860deea161a2f77de56603b340ebbb4536308ae
227 extra: histedit_source=e860deea161a2f77de56603b340ebbb4536308ae
229 description:
228 description:
230 foobaz
229 foobaz
231
230
232
231
233
232
234 $ hg histedit tip --commands - 2>&1 <<EOF| fixbundle
233 $ hg histedit tip --commands - 2>&1 <<EOF| fixbundle
235 > edit b5f70786f9b0 f
234 > edit b5f70786f9b0 f
236 > EOF
235 > EOF
237 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
236 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
238 Make changes as needed, you may commit or record as needed now.
237 Make changes as needed, you may commit or record as needed now.
239 When you are finished, run hg histedit --continue to resume.
238 When you are finished, run hg histedit --continue to resume.
240 $ hg status
239 $ hg status
241 A f
240 A f
242
241
243 $ hg summary
242 $ hg summary
244 parent: 5:a5e1ba2f7afb
243 parent: 5:a5e1ba2f7afb
245 foobaz
244 foobaz
246 branch: default
245 branch: default
247 commit: 1 added (new branch head)
246 commit: 1 added (new branch head)
248 update: 1 new changesets (update)
247 update: 1 new changesets (update)
249 phases: 7 draft
248 phases: 7 draft
250 hist: 1 remaining (histedit --continue)
249 hist: 1 remaining (histedit --continue)
251
250
252 (test also that editor is invoked if histedit is continued for
251 (test also that editor is invoked if histedit is continued for
253 "edit" action)
252 "edit" action)
254
253
255 $ HGEDITOR='cat' hg histedit --continue
254 $ HGEDITOR='cat' hg histedit --continue
256 f
255 f
257
256
258
257
259 HG: Enter commit message. Lines beginning with 'HG:' are removed.
258 HG: Enter commit message. Lines beginning with 'HG:' are removed.
260 HG: Leave message empty to abort commit.
259 HG: Leave message empty to abort commit.
261 HG: --
260 HG: --
262 HG: user: test
261 HG: user: test
263 HG: branch 'default'
262 HG: branch 'default'
264 HG: added f
263 HG: added f
265 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
264 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
266 saved backup bundle to $TESTTMP/r/.hg/strip-backup/b5f70786f9b0-c28d9c86-backup.hg (glob)
265 saved backup bundle to $TESTTMP/r/.hg/strip-backup/b5f70786f9b0-c28d9c86-backup.hg (glob)
267
266
268 $ hg status
267 $ hg status
269
268
270 log after edit
269 log after edit
271 $ hg log --limit 1
270 $ hg log --limit 1
272 changeset: 6:a107ee126658
271 changeset: 6:a107ee126658
273 tag: tip
272 tag: tip
274 user: test
273 user: test
275 date: Thu Jan 01 00:00:00 1970 +0000
274 date: Thu Jan 01 00:00:00 1970 +0000
276 summary: f
275 summary: f
277
276
278
277
279 say we'll change the message, but don't.
278 say we'll change the message, but don't.
280 $ cat > ../edit.sh <<EOF
279 $ cat > ../edit.sh <<EOF
281 > cat "\$1" | sed s/pick/mess/ > tmp
280 > cat "\$1" | sed s/pick/mess/ > tmp
282 > mv tmp "\$1"
281 > mv tmp "\$1"
283 > EOF
282 > EOF
284 $ HGEDITOR="sh ../edit.sh" hg histedit tip 2>&1 | fixbundle
283 $ HGEDITOR="sh ../edit.sh" hg histedit tip 2>&1 | fixbundle
285 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
284 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
286 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
285 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
287 $ hg status
286 $ hg status
288 $ hg log --limit 1
287 $ hg log --limit 1
289 changeset: 6:1fd3b2fe7754
288 changeset: 6:1fd3b2fe7754
290 tag: tip
289 tag: tip
291 user: test
290 user: test
292 date: Thu Jan 01 00:00:00 1970 +0000
291 date: Thu Jan 01 00:00:00 1970 +0000
293 summary: f
292 summary: f
294
293
295
294
296 modify the message
295 modify the message
297
296
298 check saving last-message.txt, at first
297 check saving last-message.txt, at first
299
298
300 $ cat > $TESTTMP/commitfailure.py <<EOF
299 $ cat > $TESTTMP/commitfailure.py <<EOF
301 > from mercurial import error
300 > from mercurial import error
302 > def reposetup(ui, repo):
301 > def reposetup(ui, repo):
303 > class commitfailure(repo.__class__):
302 > class commitfailure(repo.__class__):
304 > def commit(self, *args, **kwargs):
303 > def commit(self, *args, **kwargs):
305 > raise error.Abort('emulating unexpected abort')
304 > raise error.Abort('emulating unexpected abort')
306 > repo.__class__ = commitfailure
305 > repo.__class__ = commitfailure
307 > EOF
306 > EOF
308 $ cat >> .hg/hgrc <<EOF
307 $ cat >> .hg/hgrc <<EOF
309 > [extensions]
308 > [extensions]
310 > # this failure occurs before editor invocation
309 > # this failure occurs before editor invocation
311 > commitfailure = $TESTTMP/commitfailure.py
310 > commitfailure = $TESTTMP/commitfailure.py
312 > EOF
311 > EOF
313
312
314 $ cat > $TESTTMP/editor.sh <<EOF
313 $ cat > $TESTTMP/editor.sh <<EOF
315 > echo "==== before editing"
314 > echo "==== before editing"
316 > cat \$1
315 > cat \$1
317 > echo "===="
316 > echo "===="
318 > echo "check saving last-message.txt" >> \$1
317 > echo "check saving last-message.txt" >> \$1
319 > EOF
318 > EOF
320
319
321 (test that editor is not invoked before transaction starting)
320 (test that editor is not invoked before transaction starting)
322
321
323 $ rm -f .hg/last-message.txt
322 $ rm -f .hg/last-message.txt
324 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit tip --commands - 2>&1 << EOF | fixbundle
323 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit tip --commands - 2>&1 << EOF | fixbundle
325 > mess 1fd3b2fe7754 f
324 > mess 1fd3b2fe7754 f
326 > EOF
325 > EOF
327 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
326 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
328 abort: emulating unexpected abort
327 abort: emulating unexpected abort
329 $ test -f .hg/last-message.txt
328 $ test -f .hg/last-message.txt
330 [1]
329 [1]
331
330
332 $ cat >> .hg/hgrc <<EOF
331 $ cat >> .hg/hgrc <<EOF
333 > [extensions]
332 > [extensions]
334 > commitfailure = !
333 > commitfailure = !
335 > EOF
334 > EOF
336 $ hg histedit --abort -q
335 $ hg histedit --abort -q
337
336
338 (test that editor is invoked and commit message is saved into
337 (test that editor is invoked and commit message is saved into
339 "last-message.txt")
338 "last-message.txt")
340
339
341 $ cat >> .hg/hgrc <<EOF
340 $ cat >> .hg/hgrc <<EOF
342 > [hooks]
341 > [hooks]
343 > # this failure occurs after editor invocation
342 > # this failure occurs after editor invocation
344 > pretxncommit.unexpectedabort = false
343 > pretxncommit.unexpectedabort = false
345 > EOF
344 > EOF
346
345
347 $ hg status --rev '1fd3b2fe7754^1' --rev 1fd3b2fe7754
346 $ hg status --rev '1fd3b2fe7754^1' --rev 1fd3b2fe7754
348 A f
347 A f
349
348
350 $ rm -f .hg/last-message.txt
349 $ rm -f .hg/last-message.txt
351 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit tip --commands - 2>&1 << EOF
350 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit tip --commands - 2>&1 << EOF
352 > mess 1fd3b2fe7754 f
351 > mess 1fd3b2fe7754 f
353 > EOF
352 > EOF
354 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
353 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
355 adding f
354 adding f
356 ==== before editing
355 ==== before editing
357 f
356 f
358
357
359
358
360 HG: Enter commit message. Lines beginning with 'HG:' are removed.
359 HG: Enter commit message. Lines beginning with 'HG:' are removed.
361 HG: Leave message empty to abort commit.
360 HG: Leave message empty to abort commit.
362 HG: --
361 HG: --
363 HG: user: test
362 HG: user: test
364 HG: branch 'default'
363 HG: branch 'default'
365 HG: added f
364 HG: added f
366 ====
365 ====
367 note: commit message saved in .hg/last-message.txt
366 note: commit message saved in .hg/last-message.txt
368 transaction abort!
367 transaction abort!
369 rollback completed
368 rollback completed
370 abort: pretxncommit.unexpectedabort hook exited with status 1
369 abort: pretxncommit.unexpectedabort hook exited with status 1
371 [255]
370 [255]
372 $ cat .hg/last-message.txt
371 $ cat .hg/last-message.txt
373 f
372 f
374
373
375
374
376 check saving last-message.txt
375 check saving last-message.txt
377
376
378 (test also that editor is invoked if histedit is continued for "message"
377 (test also that editor is invoked if histedit is continued for "message"
379 action)
378 action)
380
379
381 $ HGEDITOR=cat hg histedit --continue
380 $ HGEDITOR=cat hg histedit --continue
382 f
381 f
383
382
384
383
385 HG: Enter commit message. Lines beginning with 'HG:' are removed.
384 HG: Enter commit message. Lines beginning with 'HG:' are removed.
386 HG: Leave message empty to abort commit.
385 HG: Leave message empty to abort commit.
387 HG: --
386 HG: --
388 HG: user: test
387 HG: user: test
389 HG: branch 'default'
388 HG: branch 'default'
390 HG: added f
389 HG: added f
391 note: commit message saved in .hg/last-message.txt
390 note: commit message saved in .hg/last-message.txt
392 transaction abort!
391 transaction abort!
393 rollback completed
392 rollback completed
394 abort: pretxncommit.unexpectedabort hook exited with status 1
393 abort: pretxncommit.unexpectedabort hook exited with status 1
395 [255]
394 [255]
396
395
397 $ cat >> .hg/hgrc <<EOF
396 $ cat >> .hg/hgrc <<EOF
398 > [hooks]
397 > [hooks]
399 > pretxncommit.unexpectedabort =
398 > pretxncommit.unexpectedabort =
400 > EOF
399 > EOF
401 $ hg histedit --abort -q
400 $ hg histedit --abort -q
402
401
403 then, check "modify the message" itself
402 then, check "modify the message" itself
404
403
405 $ hg histedit tip --commands - 2>&1 << EOF | fixbundle
404 $ hg histedit tip --commands - 2>&1 << EOF | fixbundle
406 > mess 1fd3b2fe7754 f
405 > mess 1fd3b2fe7754 f
407 > EOF
406 > EOF
408 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
407 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
409 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
408 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
410 $ hg status
409 $ hg status
411 $ hg log --limit 1
410 $ hg log --limit 1
412 changeset: 6:62feedb1200e
411 changeset: 6:62feedb1200e
413 tag: tip
412 tag: tip
414 user: test
413 user: test
415 date: Thu Jan 01 00:00:00 1970 +0000
414 date: Thu Jan 01 00:00:00 1970 +0000
416 summary: f
415 summary: f
417
416
418
417
419 rollback should not work after a histedit
418 rollback should not work after a histedit
420 $ hg rollback
419 $ hg rollback
421 no rollback information available
420 no rollback information available
422 [1]
421 [1]
423
422
424 $ cd ..
423 $ cd ..
425 $ hg clone -qr0 r r0
424 $ hg clone -qr0 r r0
426 $ cd r0
425 $ cd r0
427 $ hg phase -fdr0
426 $ hg phase -fdr0
428 $ hg histedit --commands - 0 2>&1 << EOF
427 $ hg histedit --commands - 0 2>&1 << EOF
429 > edit cb9a9f314b8b a > $EDITED
428 > edit cb9a9f314b8b a > $EDITED
430 > EOF
429 > EOF
431 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
430 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
432 adding a
431 adding a
433 Make changes as needed, you may commit or record as needed now.
432 Make changes as needed, you may commit or record as needed now.
434 When you are finished, run hg histedit --continue to resume.
433 When you are finished, run hg histedit --continue to resume.
435 [1]
434 [1]
436 $ HGEDITOR=true hg histedit --continue
435 $ HGEDITOR=true hg histedit --continue
437 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
436 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
438 saved backup bundle to $TESTTMP/r0/.hg/strip-backup/cb9a9f314b8b-cc5ccb0b-backup.hg (glob)
437 saved backup bundle to $TESTTMP/r0/.hg/strip-backup/cb9a9f314b8b-cc5ccb0b-backup.hg (glob)
439
438
440 $ hg log -G
439 $ hg log -G
441 @ changeset: 0:0efcea34f18a
440 @ changeset: 0:0efcea34f18a
442 tag: tip
441 tag: tip
443 user: test
442 user: test
444 date: Thu Jan 01 00:00:00 1970 +0000
443 date: Thu Jan 01 00:00:00 1970 +0000
445 summary: a
444 summary: a
446
445
447 $ echo foo >> b
446 $ echo foo >> b
448 $ hg addr
447 $ hg addr
449 adding b
448 adding b
450 $ hg ci -m 'add b'
449 $ hg ci -m 'add b'
451 $ echo foo >> a
450 $ echo foo >> a
452 $ hg ci -m 'extend a'
451 $ hg ci -m 'extend a'
453 $ hg phase --public 1
452 $ hg phase --public 1
454 Attempting to fold a change into a public change should not work:
453 Attempting to fold a change into a public change should not work:
455 $ cat > ../edit.sh <<EOF
454 $ cat > ../edit.sh <<EOF
456 > cat "\$1" | sed s/pick/fold/ > tmp
455 > cat "\$1" | sed s/pick/fold/ > tmp
457 > mv tmp "\$1"
456 > mv tmp "\$1"
458 > EOF
457 > EOF
459 $ HGEDITOR="sh ../edit.sh" hg histedit 2
458 $ HGEDITOR="sh ../edit.sh" hg histedit 2
460 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
459 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
461 reverting a
460 reverting a
462 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
461 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
463 warning: histedit rules saved to: .hg/histedit-last-edit.txt
462 warning: histedit rules saved to: .hg/histedit-last-edit.txt
464 abort: cannot fold into public change 18aa70c8ad22
463 abort: cannot fold into public change 18aa70c8ad22
465 [255]
464 [255]
466 $ cat .hg/histedit-last-edit.txt
465 $ cat .hg/histedit-last-edit.txt
467 fold 0012be4a27ea 2 extend a
466 fold 0012be4a27ea 2 extend a
468
467
469 # Edit history between 0012be4a27ea and 0012be4a27ea
468 # Edit history between 0012be4a27ea and 0012be4a27ea
470 #
469 #
471 # Commits are listed from least to most recent
470 # Commits are listed from least to most recent
472 #
471 #
473 # Commands:
472 # Commands:
474 # p, fold = use commit
473 # p, fold = use commit
475 # e, edit = use commit, but stop for amending
474 # e, edit = use commit, but stop for amending
476 # f, fold = use commit, but combine it with the one above
475 # f, fold = use commit, but combine it with the one above
477 # r, roll = like fold, but discard this commit's description
476 # r, roll = like fold, but discard this commit's description
478 # d, drop = remove commit from history
477 # d, drop = remove commit from history
479 # m, mess = edit commit message without changing commit content
478 # m, mess = edit commit message without changing commit content
480 #
479 #
481 TODO: this abort shouldn't be required, but it is for now to leave the repo in
480 TODO: this abort shouldn't be required, but it is for now to leave the repo in
482 a clean state.
481 a clean state.
483 $ hg histedit --abort
482 $ hg histedit --abort
@@ -1,345 +1,341 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > EOF
6 > EOF
7
7
8 $ initrepo ()
8 $ initrepo ()
9 > {
9 > {
10 > hg init $1
10 > hg init $1
11 > cd $1
11 > cd $1
12 > for x in a b c d e f ; do
12 > for x in a b c d e f ; do
13 > echo $x$x$x$x$x > $x
13 > echo $x$x$x$x$x > $x
14 > hg add $x
14 > hg add $x
15 > done
15 > done
16 > hg ci -m 'Initial commit'
16 > hg ci -m 'Initial commit'
17 > for x in a b c d e f ; do
17 > for x in a b c d e f ; do
18 > echo $x > $x
18 > echo $x > $x
19 > hg ci -m $x
19 > hg ci -m $x
20 > done
20 > done
21 > echo 'I can haz no commute' > e
21 > echo 'I can haz no commute' > e
22 > hg ci -m 'does not commute with e'
22 > hg ci -m 'does not commute with e'
23 > cd ..
23 > cd ..
24 > }
24 > }
25
25
26 $ initrepo r
26 $ initrepo r
27 $ cd r
27 $ cd r
28 Initial generation of the command files
28 Initial generation of the command files
29
29
30 $ EDITED="$TESTTMP/editedhistory"
30 $ EDITED="$TESTTMP/editedhistory"
31 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
31 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
32 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
32 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
33 $ hg log --template 'fold {node|short} {rev} {desc}\n' -r 7 >> $EDITED
33 $ hg log --template 'fold {node|short} {rev} {desc}\n' -r 7 >> $EDITED
34 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
34 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
35 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
35 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
36 $ cat $EDITED
36 $ cat $EDITED
37 pick 65a9a84f33fd 3 c
37 pick 65a9a84f33fd 3 c
38 pick 00f1c5383965 4 d
38 pick 00f1c5383965 4 d
39 fold 39522b764e3d 7 does not commute with e
39 fold 39522b764e3d 7 does not commute with e
40 pick 7b4e2f4b7bcd 5 e
40 pick 7b4e2f4b7bcd 5 e
41 pick 500cac37a696 6 f
41 pick 500cac37a696 6 f
42
42
43 log before edit
43 log before edit
44 $ hg log --graph
44 $ hg log --graph
45 @ changeset: 7:39522b764e3d
45 @ changeset: 7:39522b764e3d
46 | tag: tip
46 | tag: tip
47 | user: test
47 | user: test
48 | date: Thu Jan 01 00:00:00 1970 +0000
48 | date: Thu Jan 01 00:00:00 1970 +0000
49 | summary: does not commute with e
49 | summary: does not commute with e
50 |
50 |
51 o changeset: 6:500cac37a696
51 o changeset: 6:500cac37a696
52 | user: test
52 | user: test
53 | date: Thu Jan 01 00:00:00 1970 +0000
53 | date: Thu Jan 01 00:00:00 1970 +0000
54 | summary: f
54 | summary: f
55 |
55 |
56 o changeset: 5:7b4e2f4b7bcd
56 o changeset: 5:7b4e2f4b7bcd
57 | user: test
57 | user: test
58 | date: Thu Jan 01 00:00:00 1970 +0000
58 | date: Thu Jan 01 00:00:00 1970 +0000
59 | summary: e
59 | summary: e
60 |
60 |
61 o changeset: 4:00f1c5383965
61 o changeset: 4:00f1c5383965
62 | user: test
62 | user: test
63 | date: Thu Jan 01 00:00:00 1970 +0000
63 | date: Thu Jan 01 00:00:00 1970 +0000
64 | summary: d
64 | summary: d
65 |
65 |
66 o changeset: 3:65a9a84f33fd
66 o changeset: 3:65a9a84f33fd
67 | user: test
67 | user: test
68 | date: Thu Jan 01 00:00:00 1970 +0000
68 | date: Thu Jan 01 00:00:00 1970 +0000
69 | summary: c
69 | summary: c
70 |
70 |
71 o changeset: 2:da6535b52e45
71 o changeset: 2:da6535b52e45
72 | user: test
72 | user: test
73 | date: Thu Jan 01 00:00:00 1970 +0000
73 | date: Thu Jan 01 00:00:00 1970 +0000
74 | summary: b
74 | summary: b
75 |
75 |
76 o changeset: 1:c1f09da44841
76 o changeset: 1:c1f09da44841
77 | user: test
77 | user: test
78 | date: Thu Jan 01 00:00:00 1970 +0000
78 | date: Thu Jan 01 00:00:00 1970 +0000
79 | summary: a
79 | summary: a
80 |
80 |
81 o changeset: 0:1715188a53c7
81 o changeset: 0:1715188a53c7
82 user: test
82 user: test
83 date: Thu Jan 01 00:00:00 1970 +0000
83 date: Thu Jan 01 00:00:00 1970 +0000
84 summary: Initial commit
84 summary: Initial commit
85
85
86
86
87 edit the history
87 edit the history
88 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
88 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
89 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
89 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
90 merging e
90 merging e
91 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
91 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
92 Fix up the change and run hg histedit --continue
92 Fix up the change and run hg histedit --continue
93
93
94 fix up
94 fix up
95 $ echo 'I can haz no commute' > e
95 $ echo 'I can haz no commute' > e
96 $ hg resolve --mark e
96 $ hg resolve --mark e
97 (no more unresolved files)
97 (no more unresolved files)
98 $ cat > cat.py <<EOF
98 $ cat > cat.py <<EOF
99 > import sys
99 > import sys
100 > print open(sys.argv[1]).read()
100 > print open(sys.argv[1]).read()
101 > print
101 > print
102 > print
102 > print
103 > EOF
103 > EOF
104 $ HGEDITOR="python cat.py" hg histedit --continue 2>&1 | fixbundle | grep -v '2 files removed'
104 $ HGEDITOR="python cat.py" hg histedit --continue 2>&1 | fixbundle | grep -v '2 files removed'
105 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
105 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
106 d
106 d
107 ***
107 ***
108 does not commute with e
108 does not commute with e
109
109
110
110
111
111
112 HG: Enter commit message. Lines beginning with 'HG:' are removed.
112 HG: Enter commit message. Lines beginning with 'HG:' are removed.
113 HG: Leave message empty to abort commit.
113 HG: Leave message empty to abort commit.
114 HG: --
114 HG: --
115 HG: user: test
115 HG: user: test
116 HG: branch 'default'
116 HG: branch 'default'
117 HG: changed d
117 HG: changed d
118 HG: changed e
118 HG: changed e
119
119
120
120
121
121
122 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
122 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
123 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
124 merging e
123 merging e
125 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
124 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
126 Fix up the change and run hg histedit --continue
125 Fix up the change and run hg histedit --continue
127
126
128 just continue this time
127 just continue this time
129 $ hg revert -r 'p1()' e
128 $ hg revert -r 'p1()' e
130 $ hg resolve --mark e
129 $ hg resolve --mark e
131 (no more unresolved files)
130 (no more unresolved files)
132 $ hg histedit --continue 2>&1 | fixbundle
131 $ hg histedit --continue 2>&1 | fixbundle
133 7b4e2f4b7bcd: empty changeset
132 7b4e2f4b7bcd: empty changeset
134 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
133 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
135 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
136
134
137 log after edit
135 log after edit
138 $ hg log --graph
136 $ hg log --graph
139 @ changeset: 5:d9cf42e54966
137 @ changeset: 5:d9cf42e54966
140 | tag: tip
138 | tag: tip
141 | user: test
139 | user: test
142 | date: Thu Jan 01 00:00:00 1970 +0000
140 | date: Thu Jan 01 00:00:00 1970 +0000
143 | summary: f
141 | summary: f
144 |
142 |
145 o changeset: 4:10486af2e984
143 o changeset: 4:10486af2e984
146 | user: test
144 | user: test
147 | date: Thu Jan 01 00:00:00 1970 +0000
145 | date: Thu Jan 01 00:00:00 1970 +0000
148 | summary: d
146 | summary: d
149 |
147 |
150 o changeset: 3:65a9a84f33fd
148 o changeset: 3:65a9a84f33fd
151 | user: test
149 | user: test
152 | date: Thu Jan 01 00:00:00 1970 +0000
150 | date: Thu Jan 01 00:00:00 1970 +0000
153 | summary: c
151 | summary: c
154 |
152 |
155 o changeset: 2:da6535b52e45
153 o changeset: 2:da6535b52e45
156 | user: test
154 | user: test
157 | date: Thu Jan 01 00:00:00 1970 +0000
155 | date: Thu Jan 01 00:00:00 1970 +0000
158 | summary: b
156 | summary: b
159 |
157 |
160 o changeset: 1:c1f09da44841
158 o changeset: 1:c1f09da44841
161 | user: test
159 | user: test
162 | date: Thu Jan 01 00:00:00 1970 +0000
160 | date: Thu Jan 01 00:00:00 1970 +0000
163 | summary: a
161 | summary: a
164 |
162 |
165 o changeset: 0:1715188a53c7
163 o changeset: 0:1715188a53c7
166 user: test
164 user: test
167 date: Thu Jan 01 00:00:00 1970 +0000
165 date: Thu Jan 01 00:00:00 1970 +0000
168 summary: Initial commit
166 summary: Initial commit
169
167
170
168
171 contents of e
169 contents of e
172 $ hg cat e
170 $ hg cat e
173 I can haz no commute
171 I can haz no commute
174
172
175 manifest
173 manifest
176 $ hg manifest
174 $ hg manifest
177 a
175 a
178 b
176 b
179 c
177 c
180 d
178 d
181 e
179 e
182 f
180 f
183
181
184 $ cd ..
182 $ cd ..
185
183
186 Repeat test using "roll", not "fold". "roll" folds in changes but drops message
184 Repeat test using "roll", not "fold". "roll" folds in changes but drops message
187
185
188 $ initrepo r2
186 $ initrepo r2
189 $ cd r2
187 $ cd r2
190
188
191 Initial generation of the command files
189 Initial generation of the command files
192
190
193 $ EDITED="$TESTTMP/editedhistory.2"
191 $ EDITED="$TESTTMP/editedhistory.2"
194 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
192 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
195 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
193 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
196 $ hg log --template 'roll {node|short} {rev} {desc}\n' -r 7 >> $EDITED
194 $ hg log --template 'roll {node|short} {rev} {desc}\n' -r 7 >> $EDITED
197 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
195 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
198 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
196 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
199 $ cat $EDITED
197 $ cat $EDITED
200 pick 65a9a84f33fd 3 c
198 pick 65a9a84f33fd 3 c
201 pick 00f1c5383965 4 d
199 pick 00f1c5383965 4 d
202 roll 39522b764e3d 7 does not commute with e
200 roll 39522b764e3d 7 does not commute with e
203 pick 7b4e2f4b7bcd 5 e
201 pick 7b4e2f4b7bcd 5 e
204 pick 500cac37a696 6 f
202 pick 500cac37a696 6 f
205
203
206 log before edit
204 log before edit
207 $ hg log --graph
205 $ hg log --graph
208 @ changeset: 7:39522b764e3d
206 @ changeset: 7:39522b764e3d
209 | tag: tip
207 | tag: tip
210 | user: test
208 | user: test
211 | date: Thu Jan 01 00:00:00 1970 +0000
209 | date: Thu Jan 01 00:00:00 1970 +0000
212 | summary: does not commute with e
210 | summary: does not commute with e
213 |
211 |
214 o changeset: 6:500cac37a696
212 o changeset: 6:500cac37a696
215 | user: test
213 | user: test
216 | date: Thu Jan 01 00:00:00 1970 +0000
214 | date: Thu Jan 01 00:00:00 1970 +0000
217 | summary: f
215 | summary: f
218 |
216 |
219 o changeset: 5:7b4e2f4b7bcd
217 o changeset: 5:7b4e2f4b7bcd
220 | user: test
218 | user: test
221 | date: Thu Jan 01 00:00:00 1970 +0000
219 | date: Thu Jan 01 00:00:00 1970 +0000
222 | summary: e
220 | summary: e
223 |
221 |
224 o changeset: 4:00f1c5383965
222 o changeset: 4:00f1c5383965
225 | user: test
223 | user: test
226 | date: Thu Jan 01 00:00:00 1970 +0000
224 | date: Thu Jan 01 00:00:00 1970 +0000
227 | summary: d
225 | summary: d
228 |
226 |
229 o changeset: 3:65a9a84f33fd
227 o changeset: 3:65a9a84f33fd
230 | user: test
228 | user: test
231 | date: Thu Jan 01 00:00:00 1970 +0000
229 | date: Thu Jan 01 00:00:00 1970 +0000
232 | summary: c
230 | summary: c
233 |
231 |
234 o changeset: 2:da6535b52e45
232 o changeset: 2:da6535b52e45
235 | user: test
233 | user: test
236 | date: Thu Jan 01 00:00:00 1970 +0000
234 | date: Thu Jan 01 00:00:00 1970 +0000
237 | summary: b
235 | summary: b
238 |
236 |
239 o changeset: 1:c1f09da44841
237 o changeset: 1:c1f09da44841
240 | user: test
238 | user: test
241 | date: Thu Jan 01 00:00:00 1970 +0000
239 | date: Thu Jan 01 00:00:00 1970 +0000
242 | summary: a
240 | summary: a
243 |
241 |
244 o changeset: 0:1715188a53c7
242 o changeset: 0:1715188a53c7
245 user: test
243 user: test
246 date: Thu Jan 01 00:00:00 1970 +0000
244 date: Thu Jan 01 00:00:00 1970 +0000
247 summary: Initial commit
245 summary: Initial commit
248
246
249
247
250 edit the history
248 edit the history
251 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
249 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
252 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
250 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
253 merging e
251 merging e
254 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
252 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
255 Fix up the change and run hg histedit --continue
253 Fix up the change and run hg histedit --continue
256
254
257 fix up
255 fix up
258 $ echo 'I can haz no commute' > e
256 $ echo 'I can haz no commute' > e
259 $ hg resolve --mark e
257 $ hg resolve --mark e
260 (no more unresolved files)
258 (no more unresolved files)
261 $ hg histedit --continue 2>&1 | fixbundle | grep -v '2 files removed'
259 $ hg histedit --continue 2>&1 | fixbundle | grep -v '2 files removed'
262 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
260 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
263 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
261 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
264 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
265 merging e
262 merging e
266 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
263 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
267 Fix up the change and run hg histedit --continue
264 Fix up the change and run hg histedit --continue
268
265
269 just continue this time
266 just continue this time
270 $ hg revert -r 'p1()' e
267 $ hg revert -r 'p1()' e
271 $ hg resolve --mark e
268 $ hg resolve --mark e
272 (no more unresolved files)
269 (no more unresolved files)
273 $ hg histedit --continue 2>&1 | fixbundle
270 $ hg histedit --continue 2>&1 | fixbundle
274 7b4e2f4b7bcd: empty changeset
271 7b4e2f4b7bcd: empty changeset
275 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
272 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
276 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
277
273
278 log after edit
274 log after edit
279 $ hg log --graph
275 $ hg log --graph
280 @ changeset: 5:e7c4f5d4eb75
276 @ changeset: 5:e7c4f5d4eb75
281 | tag: tip
277 | tag: tip
282 | user: test
278 | user: test
283 | date: Thu Jan 01 00:00:00 1970 +0000
279 | date: Thu Jan 01 00:00:00 1970 +0000
284 | summary: f
280 | summary: f
285 |
281 |
286 o changeset: 4:803d1bb561fc
282 o changeset: 4:803d1bb561fc
287 | user: test
283 | user: test
288 | date: Thu Jan 01 00:00:00 1970 +0000
284 | date: Thu Jan 01 00:00:00 1970 +0000
289 | summary: d
285 | summary: d
290 |
286 |
291 o changeset: 3:65a9a84f33fd
287 o changeset: 3:65a9a84f33fd
292 | user: test
288 | user: test
293 | date: Thu Jan 01 00:00:00 1970 +0000
289 | date: Thu Jan 01 00:00:00 1970 +0000
294 | summary: c
290 | summary: c
295 |
291 |
296 o changeset: 2:da6535b52e45
292 o changeset: 2:da6535b52e45
297 | user: test
293 | user: test
298 | date: Thu Jan 01 00:00:00 1970 +0000
294 | date: Thu Jan 01 00:00:00 1970 +0000
299 | summary: b
295 | summary: b
300 |
296 |
301 o changeset: 1:c1f09da44841
297 o changeset: 1:c1f09da44841
302 | user: test
298 | user: test
303 | date: Thu Jan 01 00:00:00 1970 +0000
299 | date: Thu Jan 01 00:00:00 1970 +0000
304 | summary: a
300 | summary: a
305 |
301 |
306 o changeset: 0:1715188a53c7
302 o changeset: 0:1715188a53c7
307 user: test
303 user: test
308 date: Thu Jan 01 00:00:00 1970 +0000
304 date: Thu Jan 01 00:00:00 1970 +0000
309 summary: Initial commit
305 summary: Initial commit
310
306
311
307
312 contents of e
308 contents of e
313 $ hg cat e
309 $ hg cat e
314 I can haz no commute
310 I can haz no commute
315
311
316 manifest
312 manifest
317 $ hg manifest
313 $ hg manifest
318 a
314 a
319 b
315 b
320 c
316 c
321 d
317 d
322 e
318 e
323 f
319 f
324
320
325 description is taken from rollup target commit
321 description is taken from rollup target commit
326
322
327 $ hg log --debug --rev 4
323 $ hg log --debug --rev 4
328 changeset: 4:803d1bb561fceac3129ec778db9da249a3106fc3
324 changeset: 4:803d1bb561fceac3129ec778db9da249a3106fc3
329 phase: draft
325 phase: draft
330 parent: 3:65a9a84f33fdeb1ad5679b3941ec885d2b24027b
326 parent: 3:65a9a84f33fdeb1ad5679b3941ec885d2b24027b
331 parent: -1:0000000000000000000000000000000000000000
327 parent: -1:0000000000000000000000000000000000000000
332 manifest: 4:b068a323d969f22af1296ec6a5ea9384cef437ac
328 manifest: 4:b068a323d969f22af1296ec6a5ea9384cef437ac
333 user: test
329 user: test
334 date: Thu Jan 01 00:00:00 1970 +0000
330 date: Thu Jan 01 00:00:00 1970 +0000
335 files: d e
331 files: d e
336 extra: branch=default
332 extra: branch=default
337 extra: histedit_source=00f1c53839651fa5c76d423606811ea5455a79d0,39522b764e3d26103f08bd1fa2ccd3e3d7dbcf4e
333 extra: histedit_source=00f1c53839651fa5c76d423606811ea5455a79d0,39522b764e3d26103f08bd1fa2ccd3e3d7dbcf4e
338 description:
334 description:
339 d
335 d
340
336
341
337
342
338
343 done with repo r2
339 done with repo r2
344
340
345 $ cd ..
341 $ cd ..
@@ -1,571 +1,563 b''
1 Test histedit extension: Fold commands
1 Test histedit extension: Fold commands
2 ======================================
2 ======================================
3
3
4 This test file is dedicated to testing the fold command in non conflicting
4 This test file is dedicated to testing the fold command in non conflicting
5 case.
5 case.
6
6
7 Initialization
7 Initialization
8 ---------------
8 ---------------
9
9
10
10
11 $ . "$TESTDIR/histedit-helpers.sh"
11 $ . "$TESTDIR/histedit-helpers.sh"
12
12
13 $ cat >> $HGRCPATH <<EOF
13 $ cat >> $HGRCPATH <<EOF
14 > [alias]
14 > [alias]
15 > logt = log --template '{rev}:{node|short} {desc|firstline}\n'
15 > logt = log --template '{rev}:{node|short} {desc|firstline}\n'
16 > [extensions]
16 > [extensions]
17 > histedit=
17 > histedit=
18 > EOF
18 > EOF
19
19
20
20
21 Simple folding
21 Simple folding
22 --------------------
22 --------------------
23 $ initrepo ()
23 $ initrepo ()
24 > {
24 > {
25 > hg init r
25 > hg init r
26 > cd r
26 > cd r
27 > for x in a b c d e f ; do
27 > for x in a b c d e f ; do
28 > echo $x > $x
28 > echo $x > $x
29 > hg add $x
29 > hg add $x
30 > hg ci -m $x
30 > hg ci -m $x
31 > done
31 > done
32 > }
32 > }
33
33
34 $ initrepo
34 $ initrepo
35
35
36 log before edit
36 log before edit
37 $ hg logt --graph
37 $ hg logt --graph
38 @ 5:652413bf663e f
38 @ 5:652413bf663e f
39 |
39 |
40 o 4:e860deea161a e
40 o 4:e860deea161a e
41 |
41 |
42 o 3:055a42cdd887 d
42 o 3:055a42cdd887 d
43 |
43 |
44 o 2:177f92b77385 c
44 o 2:177f92b77385 c
45 |
45 |
46 o 1:d2ae7f538514 b
46 o 1:d2ae7f538514 b
47 |
47 |
48 o 0:cb9a9f314b8b a
48 o 0:cb9a9f314b8b a
49
49
50
50
51 $ hg histedit 177f92b77385 --commands - 2>&1 <<EOF | fixbundle
51 $ hg histedit 177f92b77385 --commands - 2>&1 <<EOF | fixbundle
52 > pick e860deea161a e
52 > pick e860deea161a e
53 > pick 652413bf663e f
53 > pick 652413bf663e f
54 > fold 177f92b77385 c
54 > fold 177f92b77385 c
55 > pick 055a42cdd887 d
55 > pick 055a42cdd887 d
56 > EOF
56 > EOF
57 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
57 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
58 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
59 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
60 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
58 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
61 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
59 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
62 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
60 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
63 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
64
61
65 log after edit
62 log after edit
66 $ hg logt --graph
63 $ hg logt --graph
67 @ 4:9c277da72c9b d
64 @ 4:9c277da72c9b d
68 |
65 |
69 o 3:6de59d13424a f
66 o 3:6de59d13424a f
70 |
67 |
71 o 2:ee283cb5f2d5 e
68 o 2:ee283cb5f2d5 e
72 |
69 |
73 o 1:d2ae7f538514 b
70 o 1:d2ae7f538514 b
74 |
71 |
75 o 0:cb9a9f314b8b a
72 o 0:cb9a9f314b8b a
76
73
77
74
78 post-fold manifest
75 post-fold manifest
79 $ hg manifest
76 $ hg manifest
80 a
77 a
81 b
78 b
82 c
79 c
83 d
80 d
84 e
81 e
85 f
82 f
86
83
87
84
88 check histedit_source
85 check histedit_source
89
86
90 $ hg log --debug --rev 3
87 $ hg log --debug --rev 3
91 changeset: 3:6de59d13424a8a13acd3e975514aed29dd0d9b2d
88 changeset: 3:6de59d13424a8a13acd3e975514aed29dd0d9b2d
92 phase: draft
89 phase: draft
93 parent: 2:ee283cb5f2d5955443f23a27b697a04339e9a39a
90 parent: 2:ee283cb5f2d5955443f23a27b697a04339e9a39a
94 parent: -1:0000000000000000000000000000000000000000
91 parent: -1:0000000000000000000000000000000000000000
95 manifest: 3:81eede616954057198ead0b2c73b41d1f392829a
92 manifest: 3:81eede616954057198ead0b2c73b41d1f392829a
96 user: test
93 user: test
97 date: Thu Jan 01 00:00:00 1970 +0000
94 date: Thu Jan 01 00:00:00 1970 +0000
98 files+: c f
95 files+: c f
99 extra: branch=default
96 extra: branch=default
100 extra: histedit_source=a4f7421b80f79fcc59fff01bcbf4a53d127dd6d3,177f92b773850b59254aa5e923436f921b55483b
97 extra: histedit_source=a4f7421b80f79fcc59fff01bcbf4a53d127dd6d3,177f92b773850b59254aa5e923436f921b55483b
101 description:
98 description:
102 f
99 f
103 ***
100 ***
104 c
101 c
105
102
106
103
107
104
108 rollup will fold without preserving the folded commit's message
105 rollup will fold without preserving the folded commit's message
109
106
110 $ OLDHGEDITOR=$HGEDITOR
107 $ OLDHGEDITOR=$HGEDITOR
111 $ HGEDITOR=false
108 $ HGEDITOR=false
112 $ hg histedit d2ae7f538514 --commands - 2>&1 <<EOF | fixbundle
109 $ hg histedit d2ae7f538514 --commands - 2>&1 <<EOF | fixbundle
113 > pick d2ae7f538514 b
110 > pick d2ae7f538514 b
114 > roll ee283cb5f2d5 e
111 > roll ee283cb5f2d5 e
115 > pick 6de59d13424a f
112 > pick 6de59d13424a f
116 > pick 9c277da72c9b d
113 > pick 9c277da72c9b d
117 > EOF
114 > EOF
118 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
115 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
119 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
116 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
120 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
117 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
121 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
118 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
122 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
123 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
124
119
125 $ HGEDITOR=$OLDHGEDITOR
120 $ HGEDITOR=$OLDHGEDITOR
126
121
127 log after edit
122 log after edit
128 $ hg logt --graph
123 $ hg logt --graph
129 @ 3:c4a9eb7989fc d
124 @ 3:c4a9eb7989fc d
130 |
125 |
131 o 2:8e03a72b6f83 f
126 o 2:8e03a72b6f83 f
132 |
127 |
133 o 1:391ee782c689 b
128 o 1:391ee782c689 b
134 |
129 |
135 o 0:cb9a9f314b8b a
130 o 0:cb9a9f314b8b a
136
131
137
132
138 description is taken from rollup target commit
133 description is taken from rollup target commit
139
134
140 $ hg log --debug --rev 1
135 $ hg log --debug --rev 1
141 changeset: 1:391ee782c68930be438ccf4c6a403daedbfbffa5
136 changeset: 1:391ee782c68930be438ccf4c6a403daedbfbffa5
142 phase: draft
137 phase: draft
143 parent: 0:cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b
138 parent: 0:cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b
144 parent: -1:0000000000000000000000000000000000000000
139 parent: -1:0000000000000000000000000000000000000000
145 manifest: 1:b5e112a3a8354e269b1524729f0918662d847c38
140 manifest: 1:b5e112a3a8354e269b1524729f0918662d847c38
146 user: test
141 user: test
147 date: Thu Jan 01 00:00:00 1970 +0000
142 date: Thu Jan 01 00:00:00 1970 +0000
148 files+: b e
143 files+: b e
149 extra: branch=default
144 extra: branch=default
150 extra: histedit_source=d2ae7f538514cd87c17547b0de4cea71fe1af9fb,ee283cb5f2d5955443f23a27b697a04339e9a39a
145 extra: histedit_source=d2ae7f538514cd87c17547b0de4cea71fe1af9fb,ee283cb5f2d5955443f23a27b697a04339e9a39a
151 description:
146 description:
152 b
147 b
153
148
154
149
155
150
156 check saving last-message.txt
151 check saving last-message.txt
157
152
158 $ cat > $TESTTMP/abortfolding.py <<EOF
153 $ cat > $TESTTMP/abortfolding.py <<EOF
159 > from mercurial import util
154 > from mercurial import util
160 > def abortfolding(ui, repo, hooktype, **kwargs):
155 > def abortfolding(ui, repo, hooktype, **kwargs):
161 > ctx = repo[kwargs.get('node')]
156 > ctx = repo[kwargs.get('node')]
162 > if set(ctx.files()) == set(['c', 'd', 'f']):
157 > if set(ctx.files()) == set(['c', 'd', 'f']):
163 > return True # abort folding commit only
158 > return True # abort folding commit only
164 > ui.warn('allow non-folding commit\\n')
159 > ui.warn('allow non-folding commit\\n')
165 > EOF
160 > EOF
166 $ cat > .hg/hgrc <<EOF
161 $ cat > .hg/hgrc <<EOF
167 > [hooks]
162 > [hooks]
168 > pretxncommit.abortfolding = python:$TESTTMP/abortfolding.py:abortfolding
163 > pretxncommit.abortfolding = python:$TESTTMP/abortfolding.py:abortfolding
169 > EOF
164 > EOF
170
165
171 $ cat > $TESTTMP/editor.sh << EOF
166 $ cat > $TESTTMP/editor.sh << EOF
172 > echo "==== before editing"
167 > echo "==== before editing"
173 > cat \$1
168 > cat \$1
174 > echo "===="
169 > echo "===="
175 > echo "check saving last-message.txt" >> \$1
170 > echo "check saving last-message.txt" >> \$1
176 > EOF
171 > EOF
177
172
178 $ rm -f .hg/last-message.txt
173 $ rm -f .hg/last-message.txt
179 $ hg status --rev '8e03a72b6f83^1::c4a9eb7989fc'
174 $ hg status --rev '8e03a72b6f83^1::c4a9eb7989fc'
180 A c
175 A c
181 A d
176 A d
182 A f
177 A f
183 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit 8e03a72b6f83 --commands - 2>&1 <<EOF
178 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit 8e03a72b6f83 --commands - 2>&1 <<EOF
184 > pick 8e03a72b6f83 f
179 > pick 8e03a72b6f83 f
185 > fold c4a9eb7989fc d
180 > fold c4a9eb7989fc d
186 > EOF
181 > EOF
187 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
182 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
188 adding d
183 adding d
189 allow non-folding commit
184 allow non-folding commit
190 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
185 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
191 ==== before editing
186 ==== before editing
192 f
187 f
193 ***
188 ***
194 c
189 c
195 ***
190 ***
196 d
191 d
197
192
198
193
199
194
200 HG: Enter commit message. Lines beginning with 'HG:' are removed.
195 HG: Enter commit message. Lines beginning with 'HG:' are removed.
201 HG: Leave message empty to abort commit.
196 HG: Leave message empty to abort commit.
202 HG: --
197 HG: --
203 HG: user: test
198 HG: user: test
204 HG: branch 'default'
199 HG: branch 'default'
205 HG: added c
200 HG: added c
206 HG: added d
201 HG: added d
207 HG: added f
202 HG: added f
208 ====
203 ====
209 transaction abort!
204 transaction abort!
210 rollback completed
205 rollback completed
211 abort: pretxncommit.abortfolding hook failed
206 abort: pretxncommit.abortfolding hook failed
212 [255]
207 [255]
213
208
214 $ cat .hg/last-message.txt
209 $ cat .hg/last-message.txt
215 f
210 f
216 ***
211 ***
217 c
212 c
218 ***
213 ***
219 d
214 d
220
215
221
216
222
217
223 check saving last-message.txt
218 check saving last-message.txt
224
219
225 $ cd ..
220 $ cd ..
226 $ rm -r r
221 $ rm -r r
227
222
228 folding preserves initial author
223 folding preserves initial author
229 --------------------------------
224 --------------------------------
230
225
231 $ initrepo
226 $ initrepo
232
227
233 $ hg ci --user "someone else" --amend --quiet
228 $ hg ci --user "someone else" --amend --quiet
234
229
235 tip before edit
230 tip before edit
236 $ hg log --rev .
231 $ hg log --rev .
237 changeset: 5:a00ad806cb55
232 changeset: 5:a00ad806cb55
238 tag: tip
233 tag: tip
239 user: someone else
234 user: someone else
240 date: Thu Jan 01 00:00:00 1970 +0000
235 date: Thu Jan 01 00:00:00 1970 +0000
241 summary: f
236 summary: f
242
237
243
238
244 $ hg histedit e860deea161a --commands - 2>&1 <<EOF | fixbundle
239 $ hg histedit e860deea161a --commands - 2>&1 <<EOF | fixbundle
245 > pick e860deea161a e
240 > pick e860deea161a e
246 > fold a00ad806cb55 f
241 > fold a00ad806cb55 f
247 > EOF
242 > EOF
248 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
243 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
249 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
244 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
250 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
245 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
251 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
246 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
252
247
253 tip after edit
248 tip after edit
254 $ hg log --rev .
249 $ hg log --rev .
255 changeset: 4:698d4e8040a1
250 changeset: 4:698d4e8040a1
256 tag: tip
251 tag: tip
257 user: test
252 user: test
258 date: Thu Jan 01 00:00:00 1970 +0000
253 date: Thu Jan 01 00:00:00 1970 +0000
259 summary: e
254 summary: e
260
255
261
256
262 $ cd ..
257 $ cd ..
263 $ rm -r r
258 $ rm -r r
264
259
265 folding and creating no new change doesn't break:
260 folding and creating no new change doesn't break:
266 -------------------------------------------------
261 -------------------------------------------------
267
262
268 folded content is dropped during a merge. The folded commit should properly disappear.
263 folded content is dropped during a merge. The folded commit should properly disappear.
269
264
270 $ mkdir fold-to-empty-test
265 $ mkdir fold-to-empty-test
271 $ cd fold-to-empty-test
266 $ cd fold-to-empty-test
272 $ hg init
267 $ hg init
273 $ printf "1\n2\n3\n" > file
268 $ printf "1\n2\n3\n" > file
274 $ hg add file
269 $ hg add file
275 $ hg commit -m '1+2+3'
270 $ hg commit -m '1+2+3'
276 $ echo 4 >> file
271 $ echo 4 >> file
277 $ hg commit -m '+4'
272 $ hg commit -m '+4'
278 $ echo 5 >> file
273 $ echo 5 >> file
279 $ hg commit -m '+5'
274 $ hg commit -m '+5'
280 $ echo 6 >> file
275 $ echo 6 >> file
281 $ hg commit -m '+6'
276 $ hg commit -m '+6'
282 $ hg logt --graph
277 $ hg logt --graph
283 @ 3:251d831eeec5 +6
278 @ 3:251d831eeec5 +6
284 |
279 |
285 o 2:888f9082bf99 +5
280 o 2:888f9082bf99 +5
286 |
281 |
287 o 1:617f94f13c0f +4
282 o 1:617f94f13c0f +4
288 |
283 |
289 o 0:0189ba417d34 1+2+3
284 o 0:0189ba417d34 1+2+3
290
285
291
286
292 $ hg histedit 1 --commands - << EOF
287 $ hg histedit 1 --commands - << EOF
293 > pick 617f94f13c0f 1 +4
288 > pick 617f94f13c0f 1 +4
294 > drop 888f9082bf99 2 +5
289 > drop 888f9082bf99 2 +5
295 > fold 251d831eeec5 3 +6
290 > fold 251d831eeec5 3 +6
296 > EOF
291 > EOF
297 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
292 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
298 merging file
293 merging file
299 warning: conflicts while merging file! (edit, then use 'hg resolve --mark')
294 warning: conflicts while merging file! (edit, then use 'hg resolve --mark')
300 Fix up the change and run hg histedit --continue
295 Fix up the change and run hg histedit --continue
301 [1]
296 [1]
302 There were conflicts, we keep P1 content. This
297 There were conflicts, we keep P1 content. This
303 should effectively drop the changes from +6.
298 should effectively drop the changes from +6.
304 $ hg status
299 $ hg status
305 M file
300 M file
306 ? file.orig
301 ? file.orig
307 $ hg resolve -l
302 $ hg resolve -l
308 U file
303 U file
309 $ hg revert -r 'p1()' file
304 $ hg revert -r 'p1()' file
310 $ hg resolve --mark file
305 $ hg resolve --mark file
311 (no more unresolved files)
306 (no more unresolved files)
312 $ hg histedit --continue
307 $ hg histedit --continue
313 251d831eeec5: empty changeset
308 251d831eeec5: empty changeset
314 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
309 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
315 saved backup bundle to $TESTTMP/*-backup.hg (glob)
310 saved backup bundle to $TESTTMP/*-backup.hg (glob)
316 $ hg logt --graph
311 $ hg logt --graph
317 @ 1:617f94f13c0f +4
312 @ 1:617f94f13c0f +4
318 |
313 |
319 o 0:0189ba417d34 1+2+3
314 o 0:0189ba417d34 1+2+3
320
315
321
316
322 $ cd ..
317 $ cd ..
323
318
324
319
325 Test fold through dropped
320 Test fold through dropped
326 -------------------------
321 -------------------------
327
322
328
323
329 Test corner case where folded revision is separated from its parent by a
324 Test corner case where folded revision is separated from its parent by a
330 dropped revision.
325 dropped revision.
331
326
332
327
333 $ hg init fold-with-dropped
328 $ hg init fold-with-dropped
334 $ cd fold-with-dropped
329 $ cd fold-with-dropped
335 $ printf "1\n2\n3\n" > file
330 $ printf "1\n2\n3\n" > file
336 $ hg commit -Am '1+2+3'
331 $ hg commit -Am '1+2+3'
337 adding file
332 adding file
338 $ echo 4 >> file
333 $ echo 4 >> file
339 $ hg commit -m '+4'
334 $ hg commit -m '+4'
340 $ echo 5 >> file
335 $ echo 5 >> file
341 $ hg commit -m '+5'
336 $ hg commit -m '+5'
342 $ echo 6 >> file
337 $ echo 6 >> file
343 $ hg commit -m '+6'
338 $ hg commit -m '+6'
344 $ hg logt -G
339 $ hg logt -G
345 @ 3:251d831eeec5 +6
340 @ 3:251d831eeec5 +6
346 |
341 |
347 o 2:888f9082bf99 +5
342 o 2:888f9082bf99 +5
348 |
343 |
349 o 1:617f94f13c0f +4
344 o 1:617f94f13c0f +4
350 |
345 |
351 o 0:0189ba417d34 1+2+3
346 o 0:0189ba417d34 1+2+3
352
347
353 $ hg histedit 1 --commands - << EOF
348 $ hg histedit 1 --commands - << EOF
354 > pick 617f94f13c0f 1 +4
349 > pick 617f94f13c0f 1 +4
355 > drop 888f9082bf99 2 +5
350 > drop 888f9082bf99 2 +5
356 > fold 251d831eeec5 3 +6
351 > fold 251d831eeec5 3 +6
357 > EOF
352 > EOF
358 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
353 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
359 merging file
354 merging file
360 warning: conflicts while merging file! (edit, then use 'hg resolve --mark')
355 warning: conflicts while merging file! (edit, then use 'hg resolve --mark')
361 Fix up the change and run hg histedit --continue
356 Fix up the change and run hg histedit --continue
362 [1]
357 [1]
363 $ cat > file << EOF
358 $ cat > file << EOF
364 > 1
359 > 1
365 > 2
360 > 2
366 > 3
361 > 3
367 > 4
362 > 4
368 > 5
363 > 5
369 > EOF
364 > EOF
370 $ hg resolve --mark file
365 $ hg resolve --mark file
371 (no more unresolved files)
366 (no more unresolved files)
372 $ hg commit -m '+5.2'
367 $ hg commit -m '+5.2'
373 created new head
368 created new head
374 $ echo 6 >> file
369 $ echo 6 >> file
375 $ HGEDITOR=cat hg histedit --continue
370 $ HGEDITOR=cat hg histedit --continue
376 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
371 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
377 +4
372 +4
378 ***
373 ***
379 +5.2
374 +5.2
380 ***
375 ***
381 +6
376 +6
382
377
383
378
384
379
385 HG: Enter commit message. Lines beginning with 'HG:' are removed.
380 HG: Enter commit message. Lines beginning with 'HG:' are removed.
386 HG: Leave message empty to abort commit.
381 HG: Leave message empty to abort commit.
387 HG: --
382 HG: --
388 HG: user: test
383 HG: user: test
389 HG: branch 'default'
384 HG: branch 'default'
390 HG: changed file
385 HG: changed file
391 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
386 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
392 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
387 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
393 saved backup bundle to $TESTTMP/fold-with-dropped/.hg/strip-backup/55c8d8dc79ce-4066cd98-backup.hg (glob)
388 saved backup bundle to $TESTTMP/fold-with-dropped/.hg/strip-backup/55c8d8dc79ce-4066cd98-backup.hg (glob)
394 saved backup bundle to $TESTTMP/fold-with-dropped/.hg/strip-backup/617f94f13c0f-a35700fc-backup.hg (glob)
389 saved backup bundle to $TESTTMP/fold-with-dropped/.hg/strip-backup/617f94f13c0f-a35700fc-backup.hg (glob)
395 $ hg logt -G
390 $ hg logt -G
396 @ 1:10c647b2cdd5 +4
391 @ 1:10c647b2cdd5 +4
397 |
392 |
398 o 0:0189ba417d34 1+2+3
393 o 0:0189ba417d34 1+2+3
399
394
400 $ hg export tip
395 $ hg export tip
401 # HG changeset patch
396 # HG changeset patch
402 # User test
397 # User test
403 # Date 0 0
398 # Date 0 0
404 # Thu Jan 01 00:00:00 1970 +0000
399 # Thu Jan 01 00:00:00 1970 +0000
405 # Node ID 10c647b2cdd54db0603ecb99b2ff5ce66d5a5323
400 # Node ID 10c647b2cdd54db0603ecb99b2ff5ce66d5a5323
406 # Parent 0189ba417d34df9dda55f88b637dcae9917b5964
401 # Parent 0189ba417d34df9dda55f88b637dcae9917b5964
407 +4
402 +4
408 ***
403 ***
409 +5.2
404 +5.2
410 ***
405 ***
411 +6
406 +6
412
407
413 diff -r 0189ba417d34 -r 10c647b2cdd5 file
408 diff -r 0189ba417d34 -r 10c647b2cdd5 file
414 --- a/file Thu Jan 01 00:00:00 1970 +0000
409 --- a/file Thu Jan 01 00:00:00 1970 +0000
415 +++ b/file Thu Jan 01 00:00:00 1970 +0000
410 +++ b/file Thu Jan 01 00:00:00 1970 +0000
416 @@ -1,3 +1,6 @@
411 @@ -1,3 +1,6 @@
417 1
412 1
418 2
413 2
419 3
414 3
420 +4
415 +4
421 +5
416 +5
422 +6
417 +6
423 $ cd ..
418 $ cd ..
424
419
425
420
426 Folding with initial rename (issue3729)
421 Folding with initial rename (issue3729)
427 ---------------------------------------
422 ---------------------------------------
428
423
429 $ hg init fold-rename
424 $ hg init fold-rename
430 $ cd fold-rename
425 $ cd fold-rename
431 $ echo a > a.txt
426 $ echo a > a.txt
432 $ hg add a.txt
427 $ hg add a.txt
433 $ hg commit -m a
428 $ hg commit -m a
434 $ hg rename a.txt b.txt
429 $ hg rename a.txt b.txt
435 $ hg commit -m rename
430 $ hg commit -m rename
436 $ echo b >> b.txt
431 $ echo b >> b.txt
437 $ hg commit -m b
432 $ hg commit -m b
438
433
439 $ hg logt --follow b.txt
434 $ hg logt --follow b.txt
440 2:e0371e0426bc b
435 2:e0371e0426bc b
441 1:1c4f440a8085 rename
436 1:1c4f440a8085 rename
442 0:6c795aa153cb a
437 0:6c795aa153cb a
443
438
444 $ hg histedit 1c4f440a8085 --commands - 2>&1 << EOF | fixbundle
439 $ hg histedit 1c4f440a8085 --commands - 2>&1 << EOF | fixbundle
445 > pick 1c4f440a8085 rename
440 > pick 1c4f440a8085 rename
446 > fold e0371e0426bc b
441 > fold e0371e0426bc b
447 > EOF
442 > EOF
448 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
443 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
449 reverting b.txt
444 reverting b.txt
450 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
445 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
451 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
446 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
452 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
447 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
453
448
454 $ hg logt --follow b.txt
449 $ hg logt --follow b.txt
455 1:cf858d235c76 rename
450 1:cf858d235c76 rename
456 0:6c795aa153cb a
451 0:6c795aa153cb a
457
452
458 $ cd ..
453 $ cd ..
459
454
460 Folding with swapping
455 Folding with swapping
461 ---------------------
456 ---------------------
462
457
463 This is an excuse to test hook with histedit temporary commit (issue4422)
458 This is an excuse to test hook with histedit temporary commit (issue4422)
464
459
465
460
466 $ hg init issue4422
461 $ hg init issue4422
467 $ cd issue4422
462 $ cd issue4422
468 $ echo a > a.txt
463 $ echo a > a.txt
469 $ hg add a.txt
464 $ hg add a.txt
470 $ hg commit -m a
465 $ hg commit -m a
471 $ echo b > b.txt
466 $ echo b > b.txt
472 $ hg add b.txt
467 $ hg add b.txt
473 $ hg commit -m b
468 $ hg commit -m b
474 $ echo c > c.txt
469 $ echo c > c.txt
475 $ hg add c.txt
470 $ hg add c.txt
476 $ hg commit -m c
471 $ hg commit -m c
477
472
478 $ hg logt
473 $ hg logt
479 2:a1a953ffb4b0 c
474 2:a1a953ffb4b0 c
480 1:199b6bb90248 b
475 1:199b6bb90248 b
481 0:6c795aa153cb a
476 0:6c795aa153cb a
482
477
483 Setup the proper environment variable symbol for the platform, to be subbed
478 Setup the proper environment variable symbol for the platform, to be subbed
484 into the hook command.
479 into the hook command.
485 #if windows
480 #if windows
486 $ NODE="%HG_NODE%"
481 $ NODE="%HG_NODE%"
487 #else
482 #else
488 $ NODE="\$HG_NODE"
483 $ NODE="\$HG_NODE"
489 #endif
484 #endif
490 $ hg histedit 6c795aa153cb --config hooks.commit="echo commit $NODE" --commands - 2>&1 << EOF | fixbundle
485 $ hg histedit 6c795aa153cb --config hooks.commit="echo commit $NODE" --commands - 2>&1 << EOF | fixbundle
491 > pick 199b6bb90248 b
486 > pick 199b6bb90248 b
492 > fold a1a953ffb4b0 c
487 > fold a1a953ffb4b0 c
493 > pick 6c795aa153cb a
488 > pick 6c795aa153cb a
494 > EOF
489 > EOF
495 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
490 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
496 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
497 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
491 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
498 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
492 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
499 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
493 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
500 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
501 commit 9599899f62c05f4377548c32bf1c9f1a39634b0c
494 commit 9599899f62c05f4377548c32bf1c9f1a39634b0c
502
495
503 $ hg logt
496 $ hg logt
504 1:9599899f62c0 a
497 1:9599899f62c0 a
505 0:79b99e9c8e49 b
498 0:79b99e9c8e49 b
506
499
507 $ echo "foo" > amended.txt
500 $ echo "foo" > amended.txt
508 $ hg add amended.txt
501 $ hg add amended.txt
509 $ hg ci -q --config extensions.largefiles= --amend -I amended.txt
502 $ hg ci -q --config extensions.largefiles= --amend -I amended.txt
510
503
511 Test that folding multiple changes in a row doesn't show multiple
504 Test that folding multiple changes in a row doesn't show multiple
512 editors.
505 editors.
513
506
514 $ echo foo >> foo
507 $ echo foo >> foo
515 $ hg add foo
508 $ hg add foo
516 $ hg ci -m foo1
509 $ hg ci -m foo1
517 $ echo foo >> foo
510 $ echo foo >> foo
518 $ hg ci -m foo2
511 $ hg ci -m foo2
519 $ echo foo >> foo
512 $ echo foo >> foo
520 $ hg ci -m foo3
513 $ hg ci -m foo3
521 $ hg logt
514 $ hg logt
522 4:21679ff7675c foo3
515 4:21679ff7675c foo3
523 3:b7389cc4d66e foo2
516 3:b7389cc4d66e foo2
524 2:0e01aeef5fa8 foo1
517 2:0e01aeef5fa8 foo1
525 1:578c7455730c a
518 1:578c7455730c a
526 0:79b99e9c8e49 b
519 0:79b99e9c8e49 b
527 $ cat > "$TESTTMP/editor.sh" <<EOF
520 $ cat > "$TESTTMP/editor.sh" <<EOF
528 > echo ran editor >> "$TESTTMP/editorlog.txt"
521 > echo ran editor >> "$TESTTMP/editorlog.txt"
529 > cat \$1 >> "$TESTTMP/editorlog.txt"
522 > cat \$1 >> "$TESTTMP/editorlog.txt"
530 > echo END >> "$TESTTMP/editorlog.txt"
523 > echo END >> "$TESTTMP/editorlog.txt"
531 > echo merged foos > \$1
524 > echo merged foos > \$1
532 > EOF
525 > EOF
533 $ HGEDITOR="sh \"$TESTTMP/editor.sh\"" hg histedit 1 --commands - 2>&1 <<EOF | fixbundle
526 $ HGEDITOR="sh \"$TESTTMP/editor.sh\"" hg histedit 1 --commands - 2>&1 <<EOF | fixbundle
534 > pick 578c7455730c 1 a
527 > pick 578c7455730c 1 a
535 > pick 0e01aeef5fa8 2 foo1
528 > pick 0e01aeef5fa8 2 foo1
536 > fold b7389cc4d66e 3 foo2
529 > fold b7389cc4d66e 3 foo2
537 > fold 21679ff7675c 4 foo3
530 > fold 21679ff7675c 4 foo3
538 > EOF
531 > EOF
539 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
532 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
540 reverting foo
533 reverting foo
541 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
534 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
542 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
535 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
543 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
544 merging foo
536 merging foo
545 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
537 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
546 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
538 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
547 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
548 $ hg logt
540 $ hg logt
549 2:e8bedbda72c1 merged foos
541 2:e8bedbda72c1 merged foos
550 1:578c7455730c a
542 1:578c7455730c a
551 0:79b99e9c8e49 b
543 0:79b99e9c8e49 b
552 Editor should have run only once
544 Editor should have run only once
553 $ cat $TESTTMP/editorlog.txt
545 $ cat $TESTTMP/editorlog.txt
554 ran editor
546 ran editor
555 foo1
547 foo1
556 ***
548 ***
557 foo2
549 foo2
558 ***
550 ***
559 foo3
551 foo3
560
552
561
553
562
554
563 HG: Enter commit message. Lines beginning with 'HG:' are removed.
555 HG: Enter commit message. Lines beginning with 'HG:' are removed.
564 HG: Leave message empty to abort commit.
556 HG: Leave message empty to abort commit.
565 HG: --
557 HG: --
566 HG: user: test
558 HG: user: test
567 HG: branch 'default'
559 HG: branch 'default'
568 HG: added foo
560 HG: added foo
569 END
561 END
570
562
571 $ cd ..
563 $ cd ..
@@ -1,222 +1,221 b''
1 test for old histedit issue #6:
1 test for old histedit issue #6:
2 editing a changeset without any actual change would corrupt the repository
2 editing a changeset without any actual change would corrupt the repository
3
3
4 $ . "$TESTDIR/histedit-helpers.sh"
4 $ . "$TESTDIR/histedit-helpers.sh"
5
5
6 $ cat >> $HGRCPATH <<EOF
6 $ cat >> $HGRCPATH <<EOF
7 > [extensions]
7 > [extensions]
8 > histedit=
8 > histedit=
9 > EOF
9 > EOF
10
10
11 $ initrepo ()
11 $ initrepo ()
12 > {
12 > {
13 > dir="$1"
13 > dir="$1"
14 > comment="$2"
14 > comment="$2"
15 > if [ -n "${comment}" ]; then
15 > if [ -n "${comment}" ]; then
16 > echo % ${comment}
16 > echo % ${comment}
17 > echo % ${comment} | sed 's:.:-:g'
17 > echo % ${comment} | sed 's:.:-:g'
18 > fi
18 > fi
19 > hg init ${dir}
19 > hg init ${dir}
20 > cd ${dir}
20 > cd ${dir}
21 > for x in a b c d e f ; do
21 > for x in a b c d e f ; do
22 > echo $x > $x
22 > echo $x > $x
23 > hg add $x
23 > hg add $x
24 > hg ci -m $x
24 > hg ci -m $x
25 > done
25 > done
26 > cd ..
26 > cd ..
27 > }
27 > }
28
28
29 $ geneditor ()
29 $ geneditor ()
30 > {
30 > {
31 > # generate an editor script for selecting changesets to be edited
31 > # generate an editor script for selecting changesets to be edited
32 > choice=$1 # changesets that should be edited (using sed line ranges)
32 > choice=$1 # changesets that should be edited (using sed line ranges)
33 > cat <<EOF | sed 's:^....::'
33 > cat <<EOF | sed 's:^....::'
34 > # editing the rules, replacing 'pick' with 'edit' for the chosen lines
34 > # editing the rules, replacing 'pick' with 'edit' for the chosen lines
35 > sed '${choice}s:^pick:edit:' "\$1" > "\${1}.tmp"
35 > sed '${choice}s:^pick:edit:' "\$1" > "\${1}.tmp"
36 > mv "\${1}.tmp" "\$1"
36 > mv "\${1}.tmp" "\$1"
37 > # displaying the resulting rules, minus comments and empty lines
37 > # displaying the resulting rules, minus comments and empty lines
38 > sed '/^#/d;/^$/d;s:^:| :' "\$1" >&2
38 > sed '/^#/d;/^$/d;s:^:| :' "\$1" >&2
39 > EOF
39 > EOF
40 > }
40 > }
41
41
42 $ startediting ()
42 $ startediting ()
43 > {
43 > {
44 > # begin an editing session
44 > # begin an editing session
45 > choice="$1" # changesets that should be edited
45 > choice="$1" # changesets that should be edited
46 > number="$2" # number of changesets considered (from tip)
46 > number="$2" # number of changesets considered (from tip)
47 > comment="$3"
47 > comment="$3"
48 > geneditor "${choice}" > edit.sh
48 > geneditor "${choice}" > edit.sh
49 > echo % start editing the history ${comment}
49 > echo % start editing the history ${comment}
50 > HGEDITOR="sh ./edit.sh" hg histedit -- -${number} 2>&1 | fixbundle
50 > HGEDITOR="sh ./edit.sh" hg histedit -- -${number} 2>&1 | fixbundle
51 > }
51 > }
52
52
53 $ continueediting ()
53 $ continueediting ()
54 > {
54 > {
55 > # continue an edit already in progress
55 > # continue an edit already in progress
56 > editor="$1" # message editor when finalizing editing
56 > editor="$1" # message editor when finalizing editing
57 > comment="$2"
57 > comment="$2"
58 > echo % finalize changeset editing ${comment}
58 > echo % finalize changeset editing ${comment}
59 > HGEDITOR=${editor} hg histedit --continue 2>&1 | fixbundle
59 > HGEDITOR=${editor} hg histedit --continue 2>&1 | fixbundle
60 > }
60 > }
61
61
62 $ graphlog ()
62 $ graphlog ()
63 > {
63 > {
64 > comment="${1:-log}"
64 > comment="${1:-log}"
65 > echo % "${comment}"
65 > echo % "${comment}"
66 > hg log -G --template '{rev} {node} \"{desc|firstline}\"\n'
66 > hg log -G --template '{rev} {node} \"{desc|firstline}\"\n'
67 > }
67 > }
68
68
69
69
70 $ initrepo r1 "test editing with no change"
70 $ initrepo r1 "test editing with no change"
71 % test editing with no change
71 % test editing with no change
72 -----------------------------
72 -----------------------------
73 $ cd r1
73 $ cd r1
74 $ graphlog "log before editing"
74 $ graphlog "log before editing"
75 % log before editing
75 % log before editing
76 @ 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
76 @ 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
77 |
77 |
78 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
78 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
79 |
79 |
80 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
80 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
81 |
81 |
82 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
82 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
83 |
83 |
84 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
84 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
85 |
85 |
86 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
86 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
87
87
88 $ startediting 2 3 "(not changing anything)" # edit the 2nd of 3 changesets
88 $ startediting 2 3 "(not changing anything)" # edit the 2nd of 3 changesets
89 % start editing the history (not changing anything)
89 % start editing the history (not changing anything)
90 | pick 055a42cdd887 3 d
90 | pick 055a42cdd887 3 d
91 | edit e860deea161a 4 e
91 | edit e860deea161a 4 e
92 | pick 652413bf663e 5 f
92 | pick 652413bf663e 5 f
93 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
93 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
94 Make changes as needed, you may commit or record as needed now.
94 Make changes as needed, you may commit or record as needed now.
95 When you are finished, run hg histedit --continue to resume.
95 When you are finished, run hg histedit --continue to resume.
96 $ continueediting true "(leaving commit message unaltered)"
96 $ continueediting true "(leaving commit message unaltered)"
97 % finalize changeset editing (leaving commit message unaltered)
97 % finalize changeset editing (leaving commit message unaltered)
98 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
98 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
99 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
100
99
101
100
102 check state of working copy
101 check state of working copy
103 $ hg id
102 $ hg id
104 794fe033d0a0 tip
103 794fe033d0a0 tip
105
104
106 $ graphlog "log after history editing"
105 $ graphlog "log after history editing"
107 % log after history editing
106 % log after history editing
108 @ 5 794fe033d0a030f8df77c5de945fca35c9181c30 "f"
107 @ 5 794fe033d0a030f8df77c5de945fca35c9181c30 "f"
109 |
108 |
110 o 4 04d2fab980779f332dec458cc944f28de8b43435 "e"
109 o 4 04d2fab980779f332dec458cc944f28de8b43435 "e"
111 |
110 |
112 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
111 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
113 |
112 |
114 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
113 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
115 |
114 |
116 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
115 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
117 |
116 |
118 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
117 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
119
118
120
119
121 $ cd ..
120 $ cd ..
122
121
123 $ initrepo r2 "test editing with no change, then abort"
122 $ initrepo r2 "test editing with no change, then abort"
124 % test editing with no change, then abort
123 % test editing with no change, then abort
125 -----------------------------------------
124 -----------------------------------------
126 $ cd r2
125 $ cd r2
127 $ graphlog "log before editing"
126 $ graphlog "log before editing"
128 % log before editing
127 % log before editing
129 @ 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
128 @ 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
130 |
129 |
131 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
130 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
132 |
131 |
133 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
132 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
134 |
133 |
135 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
134 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
136 |
135 |
137 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
136 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
138 |
137 |
139 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
138 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
140
139
141 $ startediting 1,2 3 "(not changing anything)" # edit the 1st two of 3 changesets
140 $ startediting 1,2 3 "(not changing anything)" # edit the 1st two of 3 changesets
142 % start editing the history (not changing anything)
141 % start editing the history (not changing anything)
143 | edit 055a42cdd887 3 d
142 | edit 055a42cdd887 3 d
144 | edit e860deea161a 4 e
143 | edit e860deea161a 4 e
145 | pick 652413bf663e 5 f
144 | pick 652413bf663e 5 f
146 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
145 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
147 Make changes as needed, you may commit or record as needed now.
146 Make changes as needed, you may commit or record as needed now.
148 When you are finished, run hg histedit --continue to resume.
147 When you are finished, run hg histedit --continue to resume.
149 $ continueediting true "(leaving commit message unaltered)"
148 $ continueediting true "(leaving commit message unaltered)"
150 % finalize changeset editing (leaving commit message unaltered)
149 % finalize changeset editing (leaving commit message unaltered)
151 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
150 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
152 Make changes as needed, you may commit or record as needed now.
151 Make changes as needed, you may commit or record as needed now.
153 When you are finished, run hg histedit --continue to resume.
152 When you are finished, run hg histedit --continue to resume.
154 $ graphlog "log after first edit"
153 $ graphlog "log after first edit"
155 % log after first edit
154 % log after first edit
156 @ 6 e5ae3ca2f1ffdbd89ec41ebc273a231f7c3022f2 "d"
155 @ 6 e5ae3ca2f1ffdbd89ec41ebc273a231f7c3022f2 "d"
157 |
156 |
158 | o 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
157 | o 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
159 | |
158 | |
160 | o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
159 | o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
161 | |
160 | |
162 | o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
161 | o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
163 |/
162 |/
164 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
163 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
165 |
164 |
166 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
165 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
167 |
166 |
168 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
167 o 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
169
168
170
169
171 abort editing session, after first forcibly updating away
170 abort editing session, after first forcibly updating away
172 $ hg up 0
171 $ hg up 0
173 abort: histedit in progress
172 abort: histedit in progress
174 (use 'hg histedit --continue' or 'hg histedit --abort')
173 (use 'hg histedit --continue' or 'hg histedit --abort')
175 [255]
174 [255]
176 $ mv .hg/histedit-state .hg/histedit-state-ignore
175 $ mv .hg/histedit-state .hg/histedit-state-ignore
177 $ hg up 0
176 $ hg up 0
178 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
177 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
179 $ mv .hg/histedit-state-ignore .hg/histedit-state
178 $ mv .hg/histedit-state-ignore .hg/histedit-state
180 $ hg sum
179 $ hg sum
181 parent: 0:cb9a9f314b8b
180 parent: 0:cb9a9f314b8b
182 a
181 a
183 branch: default
182 branch: default
184 commit: 1 added, 1 unknown (new branch head)
183 commit: 1 added, 1 unknown (new branch head)
185 update: 6 new changesets (update)
184 update: 6 new changesets (update)
186 phases: 7 draft
185 phases: 7 draft
187 hist: 2 remaining (histedit --continue)
186 hist: 2 remaining (histedit --continue)
188
187
189 $ hg histedit --abort 2>&1 | fixbundle
188 $ hg histedit --abort 2>&1 | fixbundle
190
189
191 modified files should survive the abort when we've moved away already
190 modified files should survive the abort when we've moved away already
192 $ hg st
191 $ hg st
193 A e
192 A e
194 ? edit.sh
193 ? edit.sh
195
194
196 $ graphlog "log after abort"
195 $ graphlog "log after abort"
197 % log after abort
196 % log after abort
198 o 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
197 o 5 652413bf663ef2a641cab26574e46d5f5a64a55a "f"
199 |
198 |
200 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
199 o 4 e860deea161a2f77de56603b340ebbb4536308ae "e"
201 |
200 |
202 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
201 o 3 055a42cdd88768532f9cf79daa407fc8d138de9b "d"
203 |
202 |
204 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
203 o 2 177f92b773850b59254aa5e923436f921b55483b "c"
205 |
204 |
206 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
205 o 1 d2ae7f538514cd87c17547b0de4cea71fe1af9fb "b"
207 |
206 |
208 @ 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
207 @ 0 cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b "a"
209
208
210 aborting and not changing files can skip mentioning updating (no) files
209 aborting and not changing files can skip mentioning updating (no) files
211 $ hg up
210 $ hg up
212 5 files updated, 0 files merged, 0 files removed, 0 files unresolved
211 5 files updated, 0 files merged, 0 files removed, 0 files unresolved
213 $ hg commit --close-branch -m 'closebranch'
212 $ hg commit --close-branch -m 'closebranch'
214 $ startediting 1 1 "(not changing anything)" # edit the 3rd of 3 changesets
213 $ startediting 1 1 "(not changing anything)" # edit the 3rd of 3 changesets
215 % start editing the history (not changing anything)
214 % start editing the history (not changing anything)
216 | edit 292aec348d9e 6 closebranch
215 | edit 292aec348d9e 6 closebranch
217 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
216 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
218 Make changes as needed, you may commit or record as needed now.
217 Make changes as needed, you may commit or record as needed now.
219 When you are finished, run hg histedit --continue to resume.
218 When you are finished, run hg histedit --continue to resume.
220 $ hg histedit --abort
219 $ hg histedit --abort
221
220
222 $ cd ..
221 $ cd ..
@@ -1,158 +1,157 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > EOF
6 > EOF
7
7
8 $ initrepo ()
8 $ initrepo ()
9 > {
9 > {
10 > hg init r
10 > hg init r
11 > cd r
11 > cd r
12 > for x in a b c d e f ; do
12 > for x in a b c d e f ; do
13 > echo $x > $x
13 > echo $x > $x
14 > hg add $x
14 > hg add $x
15 > hg ci -m $x
15 > hg ci -m $x
16 > done
16 > done
17 > echo a >> e
17 > echo a >> e
18 > hg ci -m 'does not commute with e'
18 > hg ci -m 'does not commute with e'
19 > cd ..
19 > cd ..
20 > }
20 > }
21
21
22 $ initrepo
22 $ initrepo
23 $ cd r
23 $ cd r
24
24
25 log before edit
25 log before edit
26 $ hg log --graph
26 $ hg log --graph
27 @ changeset: 6:bfa474341cc9
27 @ changeset: 6:bfa474341cc9
28 | tag: tip
28 | tag: tip
29 | user: test
29 | user: test
30 | date: Thu Jan 01 00:00:00 1970 +0000
30 | date: Thu Jan 01 00:00:00 1970 +0000
31 | summary: does not commute with e
31 | summary: does not commute with e
32 |
32 |
33 o changeset: 5:652413bf663e
33 o changeset: 5:652413bf663e
34 | user: test
34 | user: test
35 | date: Thu Jan 01 00:00:00 1970 +0000
35 | date: Thu Jan 01 00:00:00 1970 +0000
36 | summary: f
36 | summary: f
37 |
37 |
38 o changeset: 4:e860deea161a
38 o changeset: 4:e860deea161a
39 | user: test
39 | user: test
40 | date: Thu Jan 01 00:00:00 1970 +0000
40 | date: Thu Jan 01 00:00:00 1970 +0000
41 | summary: e
41 | summary: e
42 |
42 |
43 o changeset: 3:055a42cdd887
43 o changeset: 3:055a42cdd887
44 | user: test
44 | user: test
45 | date: Thu Jan 01 00:00:00 1970 +0000
45 | date: Thu Jan 01 00:00:00 1970 +0000
46 | summary: d
46 | summary: d
47 |
47 |
48 o changeset: 2:177f92b77385
48 o changeset: 2:177f92b77385
49 | user: test
49 | user: test
50 | date: Thu Jan 01 00:00:00 1970 +0000
50 | date: Thu Jan 01 00:00:00 1970 +0000
51 | summary: c
51 | summary: c
52 |
52 |
53 o changeset: 1:d2ae7f538514
53 o changeset: 1:d2ae7f538514
54 | user: test
54 | user: test
55 | date: Thu Jan 01 00:00:00 1970 +0000
55 | date: Thu Jan 01 00:00:00 1970 +0000
56 | summary: b
56 | summary: b
57 |
57 |
58 o changeset: 0:cb9a9f314b8b
58 o changeset: 0:cb9a9f314b8b
59 user: test
59 user: test
60 date: Thu Jan 01 00:00:00 1970 +0000
60 date: Thu Jan 01 00:00:00 1970 +0000
61 summary: a
61 summary: a
62
62
63
63
64 edit the history
64 edit the history
65 $ hg histedit 177f92b77385 --commands - 2>&1 <<EOF | fixbundle
65 $ hg histedit 177f92b77385 --commands - 2>&1 <<EOF | fixbundle
66 > pick 177f92b77385 c
66 > pick 177f92b77385 c
67 > pick 055a42cdd887 d
67 > pick 055a42cdd887 d
68 > pick bfa474341cc9 does not commute with e
68 > pick bfa474341cc9 does not commute with e
69 > pick e860deea161a e
69 > pick e860deea161a e
70 > pick 652413bf663e f
70 > pick 652413bf663e f
71 > EOF
71 > EOF
72 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
72 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
73 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
74 merging e
73 merging e
75 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
74 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
76 Fix up the change and run hg histedit --continue
75 Fix up the change and run hg histedit --continue
77
76
78 insert unsupported advisory merge record
77 insert unsupported advisory merge record
79 $ hg --config extensions.fakemergerecord=$TESTDIR/fakemergerecord.py fakemergerecord -x
78 $ hg --config extensions.fakemergerecord=$TESTDIR/fakemergerecord.py fakemergerecord -x
80 $ hg debugmergestate
79 $ hg debugmergestate
81 * version 2 records
80 * version 2 records
82 local: 8f7551c7e4a2f2efe0bc8c741baf7f227d65d758
81 local: 8f7551c7e4a2f2efe0bc8c741baf7f227d65d758
83 other: e860deea161a2f77de56603b340ebbb4536308ae
82 other: e860deea161a2f77de56603b340ebbb4536308ae
84 unrecognized entry: x advisory record
83 unrecognized entry: x advisory record
85 file: e (record type "F", state "u", hash 58e6b3a414a1e090dfc6029add0f3555ccba127f)
84 file: e (record type "F", state "u", hash 58e6b3a414a1e090dfc6029add0f3555ccba127f)
86 local path: e (flags "")
85 local path: e (flags "")
87 ancestor path: e (node null)
86 ancestor path: e (node null)
88 other path: e (node 6b67ccefd5ce6de77e7ead4f5292843a0255329f)
87 other path: e (node 6b67ccefd5ce6de77e7ead4f5292843a0255329f)
89 $ hg resolve -l
88 $ hg resolve -l
90 U e
89 U e
91
90
92 insert unsupported mandatory merge record
91 insert unsupported mandatory merge record
93 $ hg --config extensions.fakemergerecord=$TESTDIR/fakemergerecord.py fakemergerecord -X
92 $ hg --config extensions.fakemergerecord=$TESTDIR/fakemergerecord.py fakemergerecord -X
94 $ hg debugmergestate
93 $ hg debugmergestate
95 * version 2 records
94 * version 2 records
96 local: 8f7551c7e4a2f2efe0bc8c741baf7f227d65d758
95 local: 8f7551c7e4a2f2efe0bc8c741baf7f227d65d758
97 other: e860deea161a2f77de56603b340ebbb4536308ae
96 other: e860deea161a2f77de56603b340ebbb4536308ae
98 file: e (record type "F", state "u", hash 58e6b3a414a1e090dfc6029add0f3555ccba127f)
97 file: e (record type "F", state "u", hash 58e6b3a414a1e090dfc6029add0f3555ccba127f)
99 local path: e (flags "")
98 local path: e (flags "")
100 ancestor path: e (node null)
99 ancestor path: e (node null)
101 other path: e (node 6b67ccefd5ce6de77e7ead4f5292843a0255329f)
100 other path: e (node 6b67ccefd5ce6de77e7ead4f5292843a0255329f)
102 unrecognized entry: X mandatory record
101 unrecognized entry: X mandatory record
103 $ hg resolve -l
102 $ hg resolve -l
104 abort: unsupported merge state records: X
103 abort: unsupported merge state records: X
105 (see https://mercurial-scm.org/wiki/MergeStateRecords for more information)
104 (see https://mercurial-scm.org/wiki/MergeStateRecords for more information)
106 [255]
105 [255]
107 $ hg resolve -ma
106 $ hg resolve -ma
108 abort: unsupported merge state records: X
107 abort: unsupported merge state records: X
109 (see https://mercurial-scm.org/wiki/MergeStateRecords for more information)
108 (see https://mercurial-scm.org/wiki/MergeStateRecords for more information)
110 [255]
109 [255]
111
110
112 abort the edit (should clear out merge state)
111 abort the edit (should clear out merge state)
113 $ hg histedit --abort 2>&1 | fixbundle
112 $ hg histedit --abort 2>&1 | fixbundle
114 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
113 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
115 $ hg debugmergestate
114 $ hg debugmergestate
116 no merge state found
115 no merge state found
117
116
118 log after abort
117 log after abort
119 $ hg resolve -l
118 $ hg resolve -l
120 $ hg log --graph
119 $ hg log --graph
121 @ changeset: 6:bfa474341cc9
120 @ changeset: 6:bfa474341cc9
122 | tag: tip
121 | tag: tip
123 | user: test
122 | user: test
124 | date: Thu Jan 01 00:00:00 1970 +0000
123 | date: Thu Jan 01 00:00:00 1970 +0000
125 | summary: does not commute with e
124 | summary: does not commute with e
126 |
125 |
127 o changeset: 5:652413bf663e
126 o changeset: 5:652413bf663e
128 | user: test
127 | user: test
129 | date: Thu Jan 01 00:00:00 1970 +0000
128 | date: Thu Jan 01 00:00:00 1970 +0000
130 | summary: f
129 | summary: f
131 |
130 |
132 o changeset: 4:e860deea161a
131 o changeset: 4:e860deea161a
133 | user: test
132 | user: test
134 | date: Thu Jan 01 00:00:00 1970 +0000
133 | date: Thu Jan 01 00:00:00 1970 +0000
135 | summary: e
134 | summary: e
136 |
135 |
137 o changeset: 3:055a42cdd887
136 o changeset: 3:055a42cdd887
138 | user: test
137 | user: test
139 | date: Thu Jan 01 00:00:00 1970 +0000
138 | date: Thu Jan 01 00:00:00 1970 +0000
140 | summary: d
139 | summary: d
141 |
140 |
142 o changeset: 2:177f92b77385
141 o changeset: 2:177f92b77385
143 | user: test
142 | user: test
144 | date: Thu Jan 01 00:00:00 1970 +0000
143 | date: Thu Jan 01 00:00:00 1970 +0000
145 | summary: c
144 | summary: c
146 |
145 |
147 o changeset: 1:d2ae7f538514
146 o changeset: 1:d2ae7f538514
148 | user: test
147 | user: test
149 | date: Thu Jan 01 00:00:00 1970 +0000
148 | date: Thu Jan 01 00:00:00 1970 +0000
150 | summary: b
149 | summary: b
151 |
150 |
152 o changeset: 0:cb9a9f314b8b
151 o changeset: 0:cb9a9f314b8b
153 user: test
152 user: test
154 date: Thu Jan 01 00:00:00 1970 +0000
153 date: Thu Jan 01 00:00:00 1970 +0000
155 summary: a
154 summary: a
156
155
157
156
158 $ cd ..
157 $ cd ..
@@ -1,295 +1,291 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 $ cat >> $HGRCPATH <<EOF
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
4 > [extensions]
5 > histedit=
5 > histedit=
6 > EOF
6 > EOF
7
7
8 $ initrepo ()
8 $ initrepo ()
9 > {
9 > {
10 > hg init $1
10 > hg init $1
11 > cd $1
11 > cd $1
12 > for x in a b c d e f ; do
12 > for x in a b c d e f ; do
13 > echo $x$x$x$x$x > $x
13 > echo $x$x$x$x$x > $x
14 > hg add $x
14 > hg add $x
15 > done
15 > done
16 > hg ci -m 'Initial commit'
16 > hg ci -m 'Initial commit'
17 > for x in a b c d e f ; do
17 > for x in a b c d e f ; do
18 > echo $x > $x
18 > echo $x > $x
19 > hg ci -m $x
19 > hg ci -m $x
20 > done
20 > done
21 > echo 'I can haz no commute' > e
21 > echo 'I can haz no commute' > e
22 > hg ci -m 'does not commute with e'
22 > hg ci -m 'does not commute with e'
23 > cd ..
23 > cd ..
24 > }
24 > }
25
25
26 $ initrepo r1
26 $ initrepo r1
27 $ cd r1
27 $ cd r1
28
28
29 Initial generation of the command files
29 Initial generation of the command files
30
30
31 $ EDITED="$TESTTMP/editedhistory"
31 $ EDITED="$TESTTMP/editedhistory"
32 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
32 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
33 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
33 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
34 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 7 >> $EDITED
34 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 7 >> $EDITED
35 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
35 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
36 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
36 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
37 $ cat $EDITED
37 $ cat $EDITED
38 pick 65a9a84f33fd 3 c
38 pick 65a9a84f33fd 3 c
39 pick 00f1c5383965 4 d
39 pick 00f1c5383965 4 d
40 pick 39522b764e3d 7 does not commute with e
40 pick 39522b764e3d 7 does not commute with e
41 pick 7b4e2f4b7bcd 5 e
41 pick 7b4e2f4b7bcd 5 e
42 pick 500cac37a696 6 f
42 pick 500cac37a696 6 f
43
43
44 log before edit
44 log before edit
45 $ hg log --graph
45 $ hg log --graph
46 @ changeset: 7:39522b764e3d
46 @ changeset: 7:39522b764e3d
47 | tag: tip
47 | tag: tip
48 | user: test
48 | user: test
49 | date: Thu Jan 01 00:00:00 1970 +0000
49 | date: Thu Jan 01 00:00:00 1970 +0000
50 | summary: does not commute with e
50 | summary: does not commute with e
51 |
51 |
52 o changeset: 6:500cac37a696
52 o changeset: 6:500cac37a696
53 | user: test
53 | user: test
54 | date: Thu Jan 01 00:00:00 1970 +0000
54 | date: Thu Jan 01 00:00:00 1970 +0000
55 | summary: f
55 | summary: f
56 |
56 |
57 o changeset: 5:7b4e2f4b7bcd
57 o changeset: 5:7b4e2f4b7bcd
58 | user: test
58 | user: test
59 | date: Thu Jan 01 00:00:00 1970 +0000
59 | date: Thu Jan 01 00:00:00 1970 +0000
60 | summary: e
60 | summary: e
61 |
61 |
62 o changeset: 4:00f1c5383965
62 o changeset: 4:00f1c5383965
63 | user: test
63 | user: test
64 | date: Thu Jan 01 00:00:00 1970 +0000
64 | date: Thu Jan 01 00:00:00 1970 +0000
65 | summary: d
65 | summary: d
66 |
66 |
67 o changeset: 3:65a9a84f33fd
67 o changeset: 3:65a9a84f33fd
68 | user: test
68 | user: test
69 | date: Thu Jan 01 00:00:00 1970 +0000
69 | date: Thu Jan 01 00:00:00 1970 +0000
70 | summary: c
70 | summary: c
71 |
71 |
72 o changeset: 2:da6535b52e45
72 o changeset: 2:da6535b52e45
73 | user: test
73 | user: test
74 | date: Thu Jan 01 00:00:00 1970 +0000
74 | date: Thu Jan 01 00:00:00 1970 +0000
75 | summary: b
75 | summary: b
76 |
76 |
77 o changeset: 1:c1f09da44841
77 o changeset: 1:c1f09da44841
78 | user: test
78 | user: test
79 | date: Thu Jan 01 00:00:00 1970 +0000
79 | date: Thu Jan 01 00:00:00 1970 +0000
80 | summary: a
80 | summary: a
81 |
81 |
82 o changeset: 0:1715188a53c7
82 o changeset: 0:1715188a53c7
83 user: test
83 user: test
84 date: Thu Jan 01 00:00:00 1970 +0000
84 date: Thu Jan 01 00:00:00 1970 +0000
85 summary: Initial commit
85 summary: Initial commit
86
86
87
87
88 edit the history
88 edit the history
89 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
89 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
90 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
90 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
91 merging e
91 merging e
92 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
92 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
93 Fix up the change and run hg histedit --continue
93 Fix up the change and run hg histedit --continue
94
94
95 abort the edit
95 abort the edit
96 $ hg histedit --abort 2>&1 | fixbundle
96 $ hg histedit --abort 2>&1 | fixbundle
97 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
97 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
98
98
99
99
100 second edit set
100 second edit set
101
101
102 $ hg log --graph
102 $ hg log --graph
103 @ changeset: 7:39522b764e3d
103 @ changeset: 7:39522b764e3d
104 | tag: tip
104 | tag: tip
105 | user: test
105 | user: test
106 | date: Thu Jan 01 00:00:00 1970 +0000
106 | date: Thu Jan 01 00:00:00 1970 +0000
107 | summary: does not commute with e
107 | summary: does not commute with e
108 |
108 |
109 o changeset: 6:500cac37a696
109 o changeset: 6:500cac37a696
110 | user: test
110 | user: test
111 | date: Thu Jan 01 00:00:00 1970 +0000
111 | date: Thu Jan 01 00:00:00 1970 +0000
112 | summary: f
112 | summary: f
113 |
113 |
114 o changeset: 5:7b4e2f4b7bcd
114 o changeset: 5:7b4e2f4b7bcd
115 | user: test
115 | user: test
116 | date: Thu Jan 01 00:00:00 1970 +0000
116 | date: Thu Jan 01 00:00:00 1970 +0000
117 | summary: e
117 | summary: e
118 |
118 |
119 o changeset: 4:00f1c5383965
119 o changeset: 4:00f1c5383965
120 | user: test
120 | user: test
121 | date: Thu Jan 01 00:00:00 1970 +0000
121 | date: Thu Jan 01 00:00:00 1970 +0000
122 | summary: d
122 | summary: d
123 |
123 |
124 o changeset: 3:65a9a84f33fd
124 o changeset: 3:65a9a84f33fd
125 | user: test
125 | user: test
126 | date: Thu Jan 01 00:00:00 1970 +0000
126 | date: Thu Jan 01 00:00:00 1970 +0000
127 | summary: c
127 | summary: c
128 |
128 |
129 o changeset: 2:da6535b52e45
129 o changeset: 2:da6535b52e45
130 | user: test
130 | user: test
131 | date: Thu Jan 01 00:00:00 1970 +0000
131 | date: Thu Jan 01 00:00:00 1970 +0000
132 | summary: b
132 | summary: b
133 |
133 |
134 o changeset: 1:c1f09da44841
134 o changeset: 1:c1f09da44841
135 | user: test
135 | user: test
136 | date: Thu Jan 01 00:00:00 1970 +0000
136 | date: Thu Jan 01 00:00:00 1970 +0000
137 | summary: a
137 | summary: a
138 |
138 |
139 o changeset: 0:1715188a53c7
139 o changeset: 0:1715188a53c7
140 user: test
140 user: test
141 date: Thu Jan 01 00:00:00 1970 +0000
141 date: Thu Jan 01 00:00:00 1970 +0000
142 summary: Initial commit
142 summary: Initial commit
143
143
144
144
145 edit the history
145 edit the history
146 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
146 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
147 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
147 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
148 merging e
148 merging e
149 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
149 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
150 Fix up the change and run hg histedit --continue
150 Fix up the change and run hg histedit --continue
151
151
152 fix up
152 fix up
153 $ echo 'I can haz no commute' > e
153 $ echo 'I can haz no commute' > e
154 $ hg resolve --mark e
154 $ hg resolve --mark e
155 (no more unresolved files)
155 (no more unresolved files)
156 $ hg histedit --continue 2>&1 | fixbundle
156 $ hg histedit --continue 2>&1 | fixbundle
157 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
158 merging e
157 merging e
159 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
158 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
160 Fix up the change and run hg histedit --continue
159 Fix up the change and run hg histedit --continue
161
160
162 This failure is caused by 7b4e2f4b7bcd "e" not rebasing the non commutative
161 This failure is caused by 7b4e2f4b7bcd "e" not rebasing the non commutative
163 former children.
162 former children.
164
163
165 just continue this time
164 just continue this time
166 $ hg revert -r 'p1()' e
165 $ hg revert -r 'p1()' e
167 $ hg resolve --mark e
166 $ hg resolve --mark e
168 (no more unresolved files)
167 (no more unresolved files)
169 $ hg histedit --continue 2>&1 | fixbundle
168 $ hg histedit --continue 2>&1 | fixbundle
170 7b4e2f4b7bcd: empty changeset
169 7b4e2f4b7bcd: empty changeset
171 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
170 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
172 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
173
171
174 log after edit
172 log after edit
175 $ hg log --graph
173 $ hg log --graph
176 @ changeset: 6:7efe1373e4bc
174 @ changeset: 6:7efe1373e4bc
177 | tag: tip
175 | tag: tip
178 | user: test
176 | user: test
179 | date: Thu Jan 01 00:00:00 1970 +0000
177 | date: Thu Jan 01 00:00:00 1970 +0000
180 | summary: f
178 | summary: f
181 |
179 |
182 o changeset: 5:e334d87a1e55
180 o changeset: 5:e334d87a1e55
183 | user: test
181 | user: test
184 | date: Thu Jan 01 00:00:00 1970 +0000
182 | date: Thu Jan 01 00:00:00 1970 +0000
185 | summary: does not commute with e
183 | summary: does not commute with e
186 |
184 |
187 o changeset: 4:00f1c5383965
185 o changeset: 4:00f1c5383965
188 | user: test
186 | user: test
189 | date: Thu Jan 01 00:00:00 1970 +0000
187 | date: Thu Jan 01 00:00:00 1970 +0000
190 | summary: d
188 | summary: d
191 |
189 |
192 o changeset: 3:65a9a84f33fd
190 o changeset: 3:65a9a84f33fd
193 | user: test
191 | user: test
194 | date: Thu Jan 01 00:00:00 1970 +0000
192 | date: Thu Jan 01 00:00:00 1970 +0000
195 | summary: c
193 | summary: c
196 |
194 |
197 o changeset: 2:da6535b52e45
195 o changeset: 2:da6535b52e45
198 | user: test
196 | user: test
199 | date: Thu Jan 01 00:00:00 1970 +0000
197 | date: Thu Jan 01 00:00:00 1970 +0000
200 | summary: b
198 | summary: b
201 |
199 |
202 o changeset: 1:c1f09da44841
200 o changeset: 1:c1f09da44841
203 | user: test
201 | user: test
204 | date: Thu Jan 01 00:00:00 1970 +0000
202 | date: Thu Jan 01 00:00:00 1970 +0000
205 | summary: a
203 | summary: a
206 |
204 |
207 o changeset: 0:1715188a53c7
205 o changeset: 0:1715188a53c7
208 user: test
206 user: test
209 date: Thu Jan 01 00:00:00 1970 +0000
207 date: Thu Jan 01 00:00:00 1970 +0000
210 summary: Initial commit
208 summary: Initial commit
211
209
212
210
213 start over
211 start over
214
212
215 $ cd ..
213 $ cd ..
216
214
217 $ initrepo r2
215 $ initrepo r2
218 $ cd r2
216 $ cd r2
219 $ rm $EDITED
217 $ rm $EDITED
220 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
218 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 3 >> $EDITED
221 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
219 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 4 >> $EDITED
222 $ hg log --template 'mess {node|short} {rev} {desc}\n' -r 7 >> $EDITED
220 $ hg log --template 'mess {node|short} {rev} {desc}\n' -r 7 >> $EDITED
223 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
221 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 5 >> $EDITED
224 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
222 $ hg log --template 'pick {node|short} {rev} {desc}\n' -r 6 >> $EDITED
225 $ cat $EDITED
223 $ cat $EDITED
226 pick 65a9a84f33fd 3 c
224 pick 65a9a84f33fd 3 c
227 pick 00f1c5383965 4 d
225 pick 00f1c5383965 4 d
228 mess 39522b764e3d 7 does not commute with e
226 mess 39522b764e3d 7 does not commute with e
229 pick 7b4e2f4b7bcd 5 e
227 pick 7b4e2f4b7bcd 5 e
230 pick 500cac37a696 6 f
228 pick 500cac37a696 6 f
231
229
232 edit the history, this time with a fold action
230 edit the history, this time with a fold action
233 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
231 $ hg histedit 3 --commands $EDITED 2>&1 | fixbundle
234 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
232 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
235 merging e
233 merging e
236 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
234 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
237 Fix up the change and run hg histedit --continue
235 Fix up the change and run hg histedit --continue
238
236
239 $ echo 'I can haz no commute' > e
237 $ echo 'I can haz no commute' > e
240 $ hg resolve --mark e
238 $ hg resolve --mark e
241 (no more unresolved files)
239 (no more unresolved files)
242 $ hg histedit --continue 2>&1 | fixbundle
240 $ hg histedit --continue 2>&1 | fixbundle
243 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
244 merging e
241 merging e
245 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
242 warning: conflicts while merging e! (edit, then use 'hg resolve --mark')
246 Fix up the change and run hg histedit --continue
243 Fix up the change and run hg histedit --continue
247 second edit also fails, but just continue
244 second edit also fails, but just continue
248 $ hg revert -r 'p1()' e
245 $ hg revert -r 'p1()' e
249 $ hg resolve --mark e
246 $ hg resolve --mark e
250 (no more unresolved files)
247 (no more unresolved files)
251 $ hg histedit --continue 2>&1 | fixbundle
248 $ hg histedit --continue 2>&1 | fixbundle
252 7b4e2f4b7bcd: empty changeset
249 7b4e2f4b7bcd: empty changeset
253 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
250 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
254 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
255
251
256 post message fix
252 post message fix
257 $ hg log --graph
253 $ hg log --graph
258 @ changeset: 6:7efe1373e4bc
254 @ changeset: 6:7efe1373e4bc
259 | tag: tip
255 | tag: tip
260 | user: test
256 | user: test
261 | date: Thu Jan 01 00:00:00 1970 +0000
257 | date: Thu Jan 01 00:00:00 1970 +0000
262 | summary: f
258 | summary: f
263 |
259 |
264 o changeset: 5:e334d87a1e55
260 o changeset: 5:e334d87a1e55
265 | user: test
261 | user: test
266 | date: Thu Jan 01 00:00:00 1970 +0000
262 | date: Thu Jan 01 00:00:00 1970 +0000
267 | summary: does not commute with e
263 | summary: does not commute with e
268 |
264 |
269 o changeset: 4:00f1c5383965
265 o changeset: 4:00f1c5383965
270 | user: test
266 | user: test
271 | date: Thu Jan 01 00:00:00 1970 +0000
267 | date: Thu Jan 01 00:00:00 1970 +0000
272 | summary: d
268 | summary: d
273 |
269 |
274 o changeset: 3:65a9a84f33fd
270 o changeset: 3:65a9a84f33fd
275 | user: test
271 | user: test
276 | date: Thu Jan 01 00:00:00 1970 +0000
272 | date: Thu Jan 01 00:00:00 1970 +0000
277 | summary: c
273 | summary: c
278 |
274 |
279 o changeset: 2:da6535b52e45
275 o changeset: 2:da6535b52e45
280 | user: test
276 | user: test
281 | date: Thu Jan 01 00:00:00 1970 +0000
277 | date: Thu Jan 01 00:00:00 1970 +0000
282 | summary: b
278 | summary: b
283 |
279 |
284 o changeset: 1:c1f09da44841
280 o changeset: 1:c1f09da44841
285 | user: test
281 | user: test
286 | date: Thu Jan 01 00:00:00 1970 +0000
282 | date: Thu Jan 01 00:00:00 1970 +0000
287 | summary: a
283 | summary: a
288 |
284 |
289 o changeset: 0:1715188a53c7
285 o changeset: 0:1715188a53c7
290 user: test
286 user: test
291 date: Thu Jan 01 00:00:00 1970 +0000
287 date: Thu Jan 01 00:00:00 1970 +0000
292 summary: Initial commit
288 summary: Initial commit
293
289
294
290
295 $ cd ..
291 $ cd ..
@@ -1,471 +1,451 b''
1 $ . "$TESTDIR/histedit-helpers.sh"
1 $ . "$TESTDIR/histedit-helpers.sh"
2
2
3 Enable obsolete
3 Enable obsolete
4
4
5 $ cat >> $HGRCPATH << EOF
5 $ cat >> $HGRCPATH << EOF
6 > [ui]
6 > [ui]
7 > logtemplate= {rev}:{node|short} {desc|firstline}
7 > logtemplate= {rev}:{node|short} {desc|firstline}
8 > [phases]
8 > [phases]
9 > publish=False
9 > publish=False
10 > [experimental]
10 > [experimental]
11 > evolution=createmarkers,allowunstable
11 > evolution=createmarkers,allowunstable
12 > [extensions]
12 > [extensions]
13 > histedit=
13 > histedit=
14 > rebase=
14 > rebase=
15 > EOF
15 > EOF
16
16
17 $ hg init base
17 $ hg init base
18 $ cd base
18 $ cd base
19
19
20 $ for x in a b c d e f ; do
20 $ for x in a b c d e f ; do
21 > echo $x > $x
21 > echo $x > $x
22 > hg add $x
22 > hg add $x
23 > hg ci -m $x
23 > hg ci -m $x
24 > done
24 > done
25
25
26 $ hg log --graph
26 $ hg log --graph
27 @ 5:652413bf663e f
27 @ 5:652413bf663e f
28 |
28 |
29 o 4:e860deea161a e
29 o 4:e860deea161a e
30 |
30 |
31 o 3:055a42cdd887 d
31 o 3:055a42cdd887 d
32 |
32 |
33 o 2:177f92b77385 c
33 o 2:177f92b77385 c
34 |
34 |
35 o 1:d2ae7f538514 b
35 o 1:d2ae7f538514 b
36 |
36 |
37 o 0:cb9a9f314b8b a
37 o 0:cb9a9f314b8b a
38
38
39
39
40 $ HGEDITOR=cat hg histedit 1
40 $ HGEDITOR=cat hg histedit 1
41 pick d2ae7f538514 1 b
41 pick d2ae7f538514 1 b
42 pick 177f92b77385 2 c
42 pick 177f92b77385 2 c
43 pick 055a42cdd887 3 d
43 pick 055a42cdd887 3 d
44 pick e860deea161a 4 e
44 pick e860deea161a 4 e
45 pick 652413bf663e 5 f
45 pick 652413bf663e 5 f
46
46
47 # Edit history between d2ae7f538514 and 652413bf663e
47 # Edit history between d2ae7f538514 and 652413bf663e
48 #
48 #
49 # Commits are listed from least to most recent
49 # Commits are listed from least to most recent
50 #
50 #
51 # Commands:
51 # Commands:
52 # p, pick = use commit
52 # p, pick = use commit
53 # e, edit = use commit, but stop for amending
53 # e, edit = use commit, but stop for amending
54 # f, fold = use commit, but combine it with the one above
54 # f, fold = use commit, but combine it with the one above
55 # r, roll = like fold, but discard this commit's description
55 # r, roll = like fold, but discard this commit's description
56 # d, drop = remove commit from history
56 # d, drop = remove commit from history
57 # m, mess = edit commit message without changing commit content
57 # m, mess = edit commit message without changing commit content
58 #
58 #
59 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
59 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
60 $ hg histedit 1 --commands - --verbose <<EOF | grep histedit
60 $ hg histedit 1 --commands - --verbose <<EOF | grep histedit
61 > pick 177f92b77385 2 c
61 > pick 177f92b77385 2 c
62 > drop d2ae7f538514 1 b
62 > drop d2ae7f538514 1 b
63 > pick 055a42cdd887 3 d
63 > pick 055a42cdd887 3 d
64 > fold e860deea161a 4 e
64 > fold e860deea161a 4 e
65 > pick 652413bf663e 5 f
65 > pick 652413bf663e 5 f
66 > EOF
66 > EOF
67 [1]
67 [1]
68 $ hg log --graph --hidden
68 $ hg log --graph --hidden
69 @ 10:cacdfd884a93 f
69 @ 10:cacdfd884a93 f
70 |
70 |
71 o 9:59d9f330561f d
71 o 9:59d9f330561f d
72 |
72 |
73 | x 8:b558abc46d09 fold-temp-revision e860deea161a
73 | x 8:b558abc46d09 fold-temp-revision e860deea161a
74 | |
74 | |
75 | x 7:96e494a2d553 d
75 | x 7:96e494a2d553 d
76 |/
76 |/
77 o 6:b346ab9a313d c
77 o 6:b346ab9a313d c
78 |
78 |
79 | x 5:652413bf663e f
79 | x 5:652413bf663e f
80 | |
80 | |
81 | x 4:e860deea161a e
81 | x 4:e860deea161a e
82 | |
82 | |
83 | x 3:055a42cdd887 d
83 | x 3:055a42cdd887 d
84 | |
84 | |
85 | x 2:177f92b77385 c
85 | x 2:177f92b77385 c
86 | |
86 | |
87 | x 1:d2ae7f538514 b
87 | x 1:d2ae7f538514 b
88 |/
88 |/
89 o 0:cb9a9f314b8b a
89 o 0:cb9a9f314b8b a
90
90
91 $ hg debugobsolete
91 $ hg debugobsolete
92 96e494a2d553dd05902ba1cee1d94d4cb7b8faed 0 {b346ab9a313db8537ecf96fca3ca3ca984ef3bd7} (*) {'user': 'test'} (glob)
92 96e494a2d553dd05902ba1cee1d94d4cb7b8faed 0 {b346ab9a313db8537ecf96fca3ca3ca984ef3bd7} (*) {'user': 'test'} (glob)
93 b558abc46d09c30f57ac31e85a8a3d64d2e906e4 0 {96e494a2d553dd05902ba1cee1d94d4cb7b8faed} (*) {'user': 'test'} (glob)
93 b558abc46d09c30f57ac31e85a8a3d64d2e906e4 0 {96e494a2d553dd05902ba1cee1d94d4cb7b8faed} (*) {'user': 'test'} (glob)
94 d2ae7f538514cd87c17547b0de4cea71fe1af9fb 0 {cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b} (*) {'user': 'test'} (glob)
94 d2ae7f538514cd87c17547b0de4cea71fe1af9fb 0 {cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b} (*) {'user': 'test'} (glob)
95 177f92b773850b59254aa5e923436f921b55483b b346ab9a313db8537ecf96fca3ca3ca984ef3bd7 0 (*) {'user': 'test'} (glob)
95 177f92b773850b59254aa5e923436f921b55483b b346ab9a313db8537ecf96fca3ca3ca984ef3bd7 0 (*) {'user': 'test'} (glob)
96 055a42cdd88768532f9cf79daa407fc8d138de9b 59d9f330561fd6c88b1a6b32f0e45034d88db784 0 (*) {'user': 'test'} (glob)
96 055a42cdd88768532f9cf79daa407fc8d138de9b 59d9f330561fd6c88b1a6b32f0e45034d88db784 0 (*) {'user': 'test'} (glob)
97 e860deea161a2f77de56603b340ebbb4536308ae 59d9f330561fd6c88b1a6b32f0e45034d88db784 0 (*) {'user': 'test'} (glob)
97 e860deea161a2f77de56603b340ebbb4536308ae 59d9f330561fd6c88b1a6b32f0e45034d88db784 0 (*) {'user': 'test'} (glob)
98 652413bf663ef2a641cab26574e46d5f5a64a55a cacdfd884a9321ec4e1de275ef3949fa953a1f83 0 (*) {'user': 'test'} (glob)
98 652413bf663ef2a641cab26574e46d5f5a64a55a cacdfd884a9321ec4e1de275ef3949fa953a1f83 0 (*) {'user': 'test'} (glob)
99
99
100
100
101 Ensure hidden revision does not prevent histedit
101 Ensure hidden revision does not prevent histedit
102 -------------------------------------------------
102 -------------------------------------------------
103
103
104 create an hidden revision
104 create an hidden revision
105
105
106 $ hg histedit 6 --commands - << EOF
106 $ hg histedit 6 --commands - << EOF
107 > pick b346ab9a313d 6 c
107 > pick b346ab9a313d 6 c
108 > drop 59d9f330561f 7 d
108 > drop 59d9f330561f 7 d
109 > pick cacdfd884a93 8 f
109 > pick cacdfd884a93 8 f
110 > EOF
110 > EOF
111 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
111 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
112 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
112 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
113 $ hg log --graph
113 $ hg log --graph
114 @ 11:c13eb81022ca f
114 @ 11:c13eb81022ca f
115 |
115 |
116 o 6:b346ab9a313d c
116 o 6:b346ab9a313d c
117 |
117 |
118 o 0:cb9a9f314b8b a
118 o 0:cb9a9f314b8b a
119
119
120 check hidden revision are ignored (6 have hidden children 7 and 8)
120 check hidden revision are ignored (6 have hidden children 7 and 8)
121
121
122 $ hg histedit 6 --commands - << EOF
122 $ hg histedit 6 --commands - << EOF
123 > pick b346ab9a313d 6 c
123 > pick b346ab9a313d 6 c
124 > pick c13eb81022ca 8 f
124 > pick c13eb81022ca 8 f
125 > EOF
125 > EOF
126 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
126 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
127
127
128
128
129
129
130 Test that rewriting leaving instability behind is allowed
130 Test that rewriting leaving instability behind is allowed
131 ---------------------------------------------------------------------
131 ---------------------------------------------------------------------
132
132
133 $ hg up '.^'
133 $ hg up '.^'
134 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
134 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
135 $ hg log -r 'children(.)'
135 $ hg log -r 'children(.)'
136 11:c13eb81022ca f (no-eol)
136 11:c13eb81022ca f (no-eol)
137 $ hg histedit -r '.' --commands - <<EOF
137 $ hg histedit -r '.' --commands - <<EOF
138 > edit b346ab9a313d 6 c
138 > edit b346ab9a313d 6 c
139 > EOF
139 > EOF
140 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
140 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
141 adding c
141 adding c
142 Make changes as needed, you may commit or record as needed now.
142 Make changes as needed, you may commit or record as needed now.
143 When you are finished, run hg histedit --continue to resume.
143 When you are finished, run hg histedit --continue to resume.
144 [1]
144 [1]
145 $ echo c >> c
145 $ echo c >> c
146 $ hg histedit --continue
146 $ hg histedit --continue
147 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
147 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
148
148
149 $ hg log -r 'unstable()'
149 $ hg log -r 'unstable()'
150 11:c13eb81022ca f (no-eol)
150 11:c13eb81022ca f (no-eol)
151
151
152 stabilise
152 stabilise
153
153
154 $ hg rebase -r 'unstable()' -d .
154 $ hg rebase -r 'unstable()' -d .
155 rebasing 11:c13eb81022ca "f"
155 rebasing 11:c13eb81022ca "f"
156 $ hg up tip -q
156 $ hg up tip -q
157
157
158 check that extra has accumulated from histedit and rebase
158 check that extra has accumulated from histedit and rebase
159
159
160 $ hg log -T '{extras % "{key}={value}\n"}\n' -r tip
160 $ hg log -T '{extras % "{key}={value}\n"}\n' -r tip
161 branch=default
161 branch=default
162 histedit_source=cacdfd884a9321ec4e1de275ef3949fa953a1f83
162 histedit_source=cacdfd884a9321ec4e1de275ef3949fa953a1f83
163 rebase_source=c13eb81022caa686a369223fe7f926bc4f7db576
163 rebase_source=c13eb81022caa686a369223fe7f926bc4f7db576
164
164
165
165
166 Test dropping of changeset on the top of the stack
166 Test dropping of changeset on the top of the stack
167 -------------------------------------------------------
167 -------------------------------------------------------
168
168
169 Nothing is rewritten below, the working directory parent must be change for the
169 Nothing is rewritten below, the working directory parent must be change for the
170 dropped changeset to be hidden.
170 dropped changeset to be hidden.
171
171
172 $ cd ..
172 $ cd ..
173 $ hg clone base droplast
173 $ hg clone base droplast
174 updating to branch default
174 updating to branch default
175 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
175 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
176 $ cd droplast
176 $ cd droplast
177 $ hg histedit -r '40db8afa467b' --commands - << EOF
177 $ hg histedit -r '40db8afa467b' --commands - << EOF
178 > pick 40db8afa467b 10 c
178 > pick 40db8afa467b 10 c
179 > drop 947ece25170f 11 f
179 > drop 947ece25170f 11 f
180 > EOF
180 > EOF
181 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
181 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
182 $ hg log -G
182 $ hg log -G
183 @ 12:40db8afa467b c
183 @ 12:40db8afa467b c
184 |
184 |
185 o 0:cb9a9f314b8b a
185 o 0:cb9a9f314b8b a
186
186
187
187
188 With rewritten ancestors
188 With rewritten ancestors
189
189
190 $ echo e > e
190 $ echo e > e
191 $ hg add e
191 $ hg add e
192 $ hg commit -m g
192 $ hg commit -m g
193 $ echo f > f
193 $ echo f > f
194 $ hg add f
194 $ hg add f
195 $ hg commit -m h
195 $ hg commit -m h
196 $ hg histedit -r '40db8afa467b' --commands - << EOF
196 $ hg histedit -r '40db8afa467b' --commands - << EOF
197 > pick 47a8561c0449 12 g
197 > pick 47a8561c0449 12 g
198 > pick 40db8afa467b 10 c
198 > pick 40db8afa467b 10 c
199 > drop 1b3b05f35ff0 13 h
199 > drop 1b3b05f35ff0 13 h
200 > EOF
200 > EOF
201 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
201 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
202 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
202 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
203 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
204 $ hg log -G
203 $ hg log -G
205 @ 17:ee6544123ab8 c
204 @ 17:ee6544123ab8 c
206 |
205 |
207 o 16:269e713e9eae g
206 o 16:269e713e9eae g
208 |
207 |
209 o 0:cb9a9f314b8b a
208 o 0:cb9a9f314b8b a
210
209
211 $ cd ../base
210 $ cd ../base
212
211
213
212
214
213
215 Test phases support
214 Test phases support
216 ===========================================
215 ===========================================
217
216
218 Check that histedit respect immutability
217 Check that histedit respect immutability
219 -------------------------------------------
218 -------------------------------------------
220
219
221 $ cat >> $HGRCPATH << EOF
220 $ cat >> $HGRCPATH << EOF
222 > [ui]
221 > [ui]
223 > logtemplate= {rev}:{node|short} ({phase}) {desc|firstline}\n
222 > logtemplate= {rev}:{node|short} ({phase}) {desc|firstline}\n
224 > EOF
223 > EOF
225
224
226 $ hg ph -pv '.^'
225 $ hg ph -pv '.^'
227 phase changed for 2 changesets
226 phase changed for 2 changesets
228 $ hg log -G
227 $ hg log -G
229 @ 13:947ece25170f (draft) f
228 @ 13:947ece25170f (draft) f
230 |
229 |
231 o 12:40db8afa467b (public) c
230 o 12:40db8afa467b (public) c
232 |
231 |
233 o 0:cb9a9f314b8b (public) a
232 o 0:cb9a9f314b8b (public) a
234
233
235 $ hg histedit -r '.~2'
234 $ hg histedit -r '.~2'
236 abort: cannot edit public changeset: cb9a9f314b8b
235 abort: cannot edit public changeset: cb9a9f314b8b
237 (see "hg help phases" for details)
236 (see "hg help phases" for details)
238 [255]
237 [255]
239
238
240
239
241 Prepare further testing
240 Prepare further testing
242 -------------------------------------------
241 -------------------------------------------
243
242
244 $ for x in g h i j k ; do
243 $ for x in g h i j k ; do
245 > echo $x > $x
244 > echo $x > $x
246 > hg add $x
245 > hg add $x
247 > hg ci -m $x
246 > hg ci -m $x
248 > done
247 > done
249 $ hg phase --force --secret .~2
248 $ hg phase --force --secret .~2
250 $ hg log -G
249 $ hg log -G
251 @ 18:14bda137d5b3 (secret) k
250 @ 18:14bda137d5b3 (secret) k
252 |
251 |
253 o 17:c62e7241a4f2 (secret) j
252 o 17:c62e7241a4f2 (secret) j
254 |
253 |
255 o 16:9cd3934e05af (secret) i
254 o 16:9cd3934e05af (secret) i
256 |
255 |
257 o 15:ee4a24fc4dfa (draft) h
256 o 15:ee4a24fc4dfa (draft) h
258 |
257 |
259 o 14:d22905de3528 (draft) g
258 o 14:d22905de3528 (draft) g
260 |
259 |
261 o 13:947ece25170f (draft) f
260 o 13:947ece25170f (draft) f
262 |
261 |
263 o 12:40db8afa467b (public) c
262 o 12:40db8afa467b (public) c
264 |
263 |
265 o 0:cb9a9f314b8b (public) a
264 o 0:cb9a9f314b8b (public) a
266
265
267 $ cd ..
266 $ cd ..
268
267
269 simple phase conservation
268 simple phase conservation
270 -------------------------------------------
269 -------------------------------------------
271
270
272 Resulting changeset should conserve the phase of the original one whatever the
271 Resulting changeset should conserve the phase of the original one whatever the
273 phases.new-commit option is.
272 phases.new-commit option is.
274
273
275 New-commit as draft (default)
274 New-commit as draft (default)
276
275
277 $ cp -r base simple-draft
276 $ cp -r base simple-draft
278 $ cd simple-draft
277 $ cd simple-draft
279 $ hg histedit -r '947ece25170f' --commands - << EOF
278 $ hg histedit -r '947ece25170f' --commands - << EOF
280 > edit 947ece25170f 11 f
279 > edit 947ece25170f 11 f
281 > pick d22905de3528 12 g
280 > pick d22905de3528 12 g
282 > pick ee4a24fc4dfa 13 h
281 > pick ee4a24fc4dfa 13 h
283 > pick 9cd3934e05af 14 i
282 > pick 9cd3934e05af 14 i
284 > pick c62e7241a4f2 15 j
283 > pick c62e7241a4f2 15 j
285 > pick 14bda137d5b3 16 k
284 > pick 14bda137d5b3 16 k
286 > EOF
285 > EOF
287 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
286 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
288 adding f
287 adding f
289 Make changes as needed, you may commit or record as needed now.
288 Make changes as needed, you may commit or record as needed now.
290 When you are finished, run hg histedit --continue to resume.
289 When you are finished, run hg histedit --continue to resume.
291 [1]
290 [1]
292 $ echo f >> f
291 $ echo f >> f
293 $ hg histedit --continue
292 $ hg histedit --continue
294 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
293 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
295 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
296 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
297 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
298 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
299 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
300 $ hg log -G
294 $ hg log -G
301 @ 24:12925f763c90 (secret) k
295 @ 24:12925f763c90 (secret) k
302 |
296 |
303 o 23:4545a6e77442 (secret) j
297 o 23:4545a6e77442 (secret) j
304 |
298 |
305 o 22:d947a0798e76 (secret) i
299 o 22:d947a0798e76 (secret) i
306 |
300 |
307 o 21:28fb35ae4ebb (draft) h
301 o 21:28fb35ae4ebb (draft) h
308 |
302 |
309 o 20:10b22a5a9645 (draft) g
303 o 20:10b22a5a9645 (draft) g
310 |
304 |
311 o 19:c5a1db4a69f5 (draft) f
305 o 19:c5a1db4a69f5 (draft) f
312 |
306 |
313 o 12:40db8afa467b (public) c
307 o 12:40db8afa467b (public) c
314 |
308 |
315 o 0:cb9a9f314b8b (public) a
309 o 0:cb9a9f314b8b (public) a
316
310
317 $ cd ..
311 $ cd ..
318
312
319
313
320 New-commit as draft (default)
314 New-commit as draft (default)
321
315
322 $ cp -r base simple-secret
316 $ cp -r base simple-secret
323 $ cd simple-secret
317 $ cd simple-secret
324 $ cat >> .hg/hgrc << EOF
318 $ cat >> .hg/hgrc << EOF
325 > [phases]
319 > [phases]
326 > new-commit=secret
320 > new-commit=secret
327 > EOF
321 > EOF
328 $ hg histedit -r '947ece25170f' --commands - << EOF
322 $ hg histedit -r '947ece25170f' --commands - << EOF
329 > edit 947ece25170f 11 f
323 > edit 947ece25170f 11 f
330 > pick d22905de3528 12 g
324 > pick d22905de3528 12 g
331 > pick ee4a24fc4dfa 13 h
325 > pick ee4a24fc4dfa 13 h
332 > pick 9cd3934e05af 14 i
326 > pick 9cd3934e05af 14 i
333 > pick c62e7241a4f2 15 j
327 > pick c62e7241a4f2 15 j
334 > pick 14bda137d5b3 16 k
328 > pick 14bda137d5b3 16 k
335 > EOF
329 > EOF
336 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
330 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
337 adding f
331 adding f
338 Make changes as needed, you may commit or record as needed now.
332 Make changes as needed, you may commit or record as needed now.
339 When you are finished, run hg histedit --continue to resume.
333 When you are finished, run hg histedit --continue to resume.
340 [1]
334 [1]
341 $ echo f >> f
335 $ echo f >> f
342 $ hg histedit --continue
336 $ hg histedit --continue
343 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
337 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
344 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
345 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
346 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
347 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
348 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
349 $ hg log -G
338 $ hg log -G
350 @ 24:12925f763c90 (secret) k
339 @ 24:12925f763c90 (secret) k
351 |
340 |
352 o 23:4545a6e77442 (secret) j
341 o 23:4545a6e77442 (secret) j
353 |
342 |
354 o 22:d947a0798e76 (secret) i
343 o 22:d947a0798e76 (secret) i
355 |
344 |
356 o 21:28fb35ae4ebb (draft) h
345 o 21:28fb35ae4ebb (draft) h
357 |
346 |
358 o 20:10b22a5a9645 (draft) g
347 o 20:10b22a5a9645 (draft) g
359 |
348 |
360 o 19:c5a1db4a69f5 (draft) f
349 o 19:c5a1db4a69f5 (draft) f
361 |
350 |
362 o 12:40db8afa467b (public) c
351 o 12:40db8afa467b (public) c
363 |
352 |
364 o 0:cb9a9f314b8b (public) a
353 o 0:cb9a9f314b8b (public) a
365
354
366 $ cd ..
355 $ cd ..
367
356
368
357
369 Changeset reordering
358 Changeset reordering
370 -------------------------------------------
359 -------------------------------------------
371
360
372 If a secret changeset is put before a draft one, all descendant should be secret.
361 If a secret changeset is put before a draft one, all descendant should be secret.
373 It seems more important to present the secret phase.
362 It seems more important to present the secret phase.
374
363
375 $ cp -r base reorder
364 $ cp -r base reorder
376 $ cd reorder
365 $ cd reorder
377 $ hg histedit -r '947ece25170f' --commands - << EOF
366 $ hg histedit -r '947ece25170f' --commands - << EOF
378 > pick 947ece25170f 11 f
367 > pick 947ece25170f 11 f
379 > pick c62e7241a4f2 15 j
368 > pick c62e7241a4f2 15 j
380 > pick d22905de3528 12 g
369 > pick d22905de3528 12 g
381 > pick 9cd3934e05af 14 i
370 > pick 9cd3934e05af 14 i
382 > pick ee4a24fc4dfa 13 h
371 > pick ee4a24fc4dfa 13 h
383 > pick 14bda137d5b3 16 k
372 > pick 14bda137d5b3 16 k
384 > EOF
373 > EOF
385 0 files updated, 0 files merged, 5 files removed, 0 files unresolved
374 0 files updated, 0 files merged, 5 files removed, 0 files unresolved
386 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
375 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
387 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
388 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
389 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
390 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
391 $ hg log -G
376 $ hg log -G
392 @ 23:9e712162b2c1 (secret) k
377 @ 23:9e712162b2c1 (secret) k
393 |
378 |
394 o 22:490861543602 (secret) h
379 o 22:490861543602 (secret) h
395 |
380 |
396 o 21:86aeda50b70d (secret) i
381 o 21:86aeda50b70d (secret) i
397 |
382 |
398 o 20:b2fa360bc090 (secret) g
383 o 20:b2fa360bc090 (secret) g
399 |
384 |
400 o 19:e10fb4e3eb8e (secret) j
385 o 19:e10fb4e3eb8e (secret) j
401 |
386 |
402 o 13:947ece25170f (draft) f
387 o 13:947ece25170f (draft) f
403 |
388 |
404 o 12:40db8afa467b (public) c
389 o 12:40db8afa467b (public) c
405 |
390 |
406 o 0:cb9a9f314b8b (public) a
391 o 0:cb9a9f314b8b (public) a
407
392
408 $ cd ..
393 $ cd ..
409
394
410 Changeset folding
395 Changeset folding
411 -------------------------------------------
396 -------------------------------------------
412
397
413 Folding a secret changeset with a draft one turn the result secret (again,
398 Folding a secret changeset with a draft one turn the result secret (again,
414 better safe than sorry). Folding between same phase changeset still works
399 better safe than sorry). Folding between same phase changeset still works
415
400
416 Note that there is a few reordering in this series for more extensive test
401 Note that there is a few reordering in this series for more extensive test
417
402
418 $ cp -r base folding
403 $ cp -r base folding
419 $ cd folding
404 $ cd folding
420 $ cat >> .hg/hgrc << EOF
405 $ cat >> .hg/hgrc << EOF
421 > [phases]
406 > [phases]
422 > new-commit=secret
407 > new-commit=secret
423 > EOF
408 > EOF
424 $ hg histedit -r '947ece25170f' --commands - << EOF
409 $ hg histedit -r '947ece25170f' --commands - << EOF
425 > pick ee4a24fc4dfa 13 h
410 > pick ee4a24fc4dfa 13 h
426 > fold 947ece25170f 11 f
411 > fold 947ece25170f 11 f
427 > pick d22905de3528 12 g
412 > pick d22905de3528 12 g
428 > fold c62e7241a4f2 15 j
413 > fold c62e7241a4f2 15 j
429 > pick 9cd3934e05af 14 i
414 > pick 9cd3934e05af 14 i
430 > fold 14bda137d5b3 16 k
415 > fold 14bda137d5b3 16 k
431 > EOF
416 > EOF
432 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
417 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
433 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
434 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
418 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
435 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
436 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
437 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
438 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
420 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
439 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
421 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
440 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
441 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
442 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
422 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
443 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
423 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
444 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
424 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
445 $ hg log -G
425 $ hg log -G
446 @ 27:769e8ee8708e (secret) i
426 @ 27:769e8ee8708e (secret) i
447 |
427 |
448 o 24:3de6dbab1b62 (secret) g
428 o 24:3de6dbab1b62 (secret) g
449 |
429 |
450 o 21:1d51647632b2 (draft) h
430 o 21:1d51647632b2 (draft) h
451 |
431 |
452 o 12:40db8afa467b (public) c
432 o 12:40db8afa467b (public) c
453 |
433 |
454 o 0:cb9a9f314b8b (public) a
434 o 0:cb9a9f314b8b (public) a
455
435
456 $ hg co 3de6dbab1b62
436 $ hg co 3de6dbab1b62
457 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
437 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
458 $ echo wat >> wat
438 $ echo wat >> wat
459 $ hg add wat
439 $ hg add wat
460 $ hg ci -m 'add wat'
440 $ hg ci -m 'add wat'
461 created new head
441 created new head
462 $ hg merge 769e8ee8708e
442 $ hg merge 769e8ee8708e
463 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
443 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
464 (branch merge, don't forget to commit)
444 (branch merge, don't forget to commit)
465 $ hg ci -m 'merge'
445 $ hg ci -m 'merge'
466 $ echo not wat > wat
446 $ echo not wat > wat
467 $ hg ci -m 'modify wat'
447 $ hg ci -m 'modify wat'
468 $ hg histedit 1d51647632b2
448 $ hg histedit 1d51647632b2
469 abort: cannot edit history that contains merges
449 abort: cannot edit history that contains merges
470 [255]
450 [255]
471 $ cd ..
451 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now