]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
"tahoe backup": fix --exclude-vcs docs to include Git
authorBrian Warner <warner@lothar.com>
Wed, 27 Jan 2010 20:10:44 +0000 (12:10 -0800)
committerBrian Warner <warner@lothar.com>
Wed, 27 Jan 2010 20:10:44 +0000 (12:10 -0800)
src/allmydata/scripts/cli.py

index 233e3b1f6845162eec6047d5b4427ed0fc8dfe9e..1ac6ad0e1fd60f31ce48bb5291648af239b6751b 100644 (file)
@@ -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)