fetch: do not fetch if working dir modified
authorVadim Gelfer <vadim.gelfer@gmail.com>
Mon, 07 Aug 2006 17:33:14 -0700
changeset 2801 bd4dada96c2e
parent 2800 135823f37304
child 2802 df220d0974dd
fetch: do not fetch if working dir modified
hgext/fetch.py
--- a/hgext/fetch.py	Mon Aug 07 17:27:38 2006 -0700
+++ b/hgext/fetch.py	Mon Aug 07 17:33:14 2006 -0700
@@ -70,6 +70,9 @@
                            '(use "hg update" to check out tip)'))
     if p2 != nullid:
         raise util.Abort(_('outstanding uncommitted merge'))
+    mod, add, rem = repo.status()[:3]
+    if mod or add or rem:
+        raise util.Abort(_('outstanding uncommitted changes'))
     if len(repo.heads()) > 1:
         raise util.Abort(_('multiple heads in this repository '
                            '(use "hg heads" and "hg merge" to merge them)'))