##// END OF EJS Templates
absorb: clarify the reason for not finding changesets to modify...
Matt Harbison -
r39489:ab452995 default
parent child Browse files
Show More
@@ -917,7 +917,7 b' def absorb(ui, repo, stack=None, targetc'
917 917 'be analysed\n')
918 918 % limit)
919 919 if not stack:
920 raise error.Abort(_('no changeset to change'))
920 raise error.Abort(_('no mutable changeset to change'))
921 921 if targetctx is None: # default to working copy
922 922 targetctx = repo[None]
923 923 if pats is None:
@@ -18,7 +18,7 b''
18 18 Do not crash with empty repo:
19 19
20 20 $ hg absorb
21 abort: no changeset to change
21 abort: no mutable changeset to change
22 22 [255]
23 23
24 24 Make some commits:
@@ -225,7 +225,7 b' Merge commit will not be changed:'
225 225 $ echo 2 >> m1
226 226 $ echo 2 >> m2
227 227 $ hg absorb
228 abort: no changeset to change
228 abort: no mutable changeset to change
229 229 [255]
230 230 $ hg revert -q -C m1 m2
231 231
General Comments 0
You need to be logged in to leave comments. Login now