From: Brian Warner <warner@lothar.com>
Date: Wed, 27 Jan 2010 20:10:44 +0000 (-0800)
Subject: "tahoe backup": fix --exclude-vcs docs to include Git
X-Git-Tag: trac-4200~12
X-Git-Url: https://git.rkrishnan.org/simplejson/components/vdrive?a=commitdiff_plain;h=52185053c3ad99c3cd71b26f0d32ea8f3cb24aae;p=tahoe-lafs%2Ftahoe-lafs.git

"tahoe backup": fix --exclude-vcs docs to include Git
---

diff --git a/src/allmydata/scripts/cli.py b/src/allmydata/scripts/cli.py
index 233e3b1f..1ac6ad0e 100644
--- a/src/allmydata/scripts/cli.py
+++ b/src/allmydata/scripts/cli.py
@@ -283,9 +283,9 @@ class BackupOptions(VDriveOptions):
             exclude_file.close()
 
     def opt_exclude_vcs(self):
-        """Exclude files and directories used by following version
-        control systems: 'CVS', 'RCS', 'SCCS', 'SVN', 'Arch',
-        'Bazaar', 'Mercurial', and 'Darcs'."""
+        """Exclude files and directories used by following version control
+        systems: CVS, RCS, SCCS, Git, SVN, Arch, Bazaar(bzr), Mercurial,
+        Darcs."""
         for pattern in self.vcs_patterns:
             self.opt_exclude(pattern)