1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 09:47:58 +00:00

add help string for --no-files-cache, fixes #140

This commit is contained in:
Thomas Waldmann 2015-08-08 20:50:21 +02:00
parent 60e34968b0
commit 616d16a9b0

View file

@ -509,7 +509,8 @@ def run(self, args=None):
common_parser.add_argument('-v', '--verbose', dest='verbose', action='store_true', common_parser.add_argument('-v', '--verbose', dest='verbose', action='store_true',
default=False, default=False,
help='verbose output') help='verbose output')
common_parser.add_argument('--no-files-cache', dest='cache_files', action='store_false') common_parser.add_argument('--no-files-cache', dest='cache_files', action='store_false',
help='do not load/update the file metadata cache used to detect unchanged files')
common_parser.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=0o077, metavar='M', common_parser.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=0o077, metavar='M',
help='set umask to M (local and remote, default: 0o077)') help='set umask to M (local and remote, default: 0o077)')
common_parser.add_argument('--remote-path', dest='remote_path', default='borg', metavar='PATH', common_parser.add_argument('--remote-path', dest='remote_path', default='borg', metavar='PATH',