Warn about large files on hg add
authorMatt Mackall <mpm@selenic.com>
Fri, 01 Jun 2007 14:07:42 -0500
changeset 4475 e8a584067825
parent 4474 08ae451148b2
child 4476 4ef8fdf57e39
Warn about large files on hg add
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Fri Jun 01 19:49:09 2007 +0200
+++ b/mercurial/localrepo.py	Fri Jun 01 14:07:42 2007 -0500
@@ -1006,6 +1006,12 @@
         for f in list:
             p = self.wjoin(f)
             islink = os.path.islink(p)
+            size = os.lstat(p).st_size
+            if size > 10000000:
+                self.ui.warn(_("%s: files over 10MB may cause memory and"
+                               " performance problems\n"
+                               "(use 'hg revert %s' to unadd the file)\n")
+                               % (f, f))
             if not islink and not os.path.exists(p):
                 self.ui.warn(_("%s does not exist!\n") % f)
             elif not islink and not os.path.isfile(p):