Comments
Patch
@@ -551,7 +551,7 @@
$ echo c > b
$ hg strip tip
- abort: local changes found
+ abort: uncommitted changes
[255]
$ hg strip tip --keep
saved backup bundle to $TESTTMP/test/.hg/strip-backup/*-backup.hg (glob)
@@ -703,7 +703,7 @@
$ echo a > a
$ hg add a
$ hg strip -B B
- abort: local changes found
+ abort: uncommitted changes
[255]
$ hg bookmarks
* B 6:ff43616e5d0f
@@ -811,7 +811,7 @@
$ echo y>y
$ hg add y
$ hg strip tip
- abort: local changes found
+ abort: uncommitted changes
[255]
--force strip with local changes
@@ -50,15 +50,7 @@
cmdutil.checkunfinished(repo)
s = repo.status()
if not force:
- if len(repo[None].parents()) > 1:
- _("outstanding uncommitted merge") #i18 tool detection
- raise error.Abort(_("outstanding uncommitted merge"))
- if s.modified or s.added or s.removed or s.deleted:
- _("local changes found") # i18n tool detection
- raise error.Abort(_("local changes found"))
- if checksubstate(repo):
- _("local changed subrepos found") # i18n tool detection
- raise error.Abort(_("local changed subrepos found"))
+ cmdutil.bailifchanged(repo)
return s
def _findupdatetarget(repo, nodes):