# HG changeset patch # User Mads Kiilerich # Date 1365983951 -7200 # Node ID 43cb150e74f9107e22345d8af0e7c606f991d3e9 # Parent 83ead8cb0ff2dadd79572566139a570595925be9 largefiles: deprecate --all-largefiles for pull The same can be achieved with --lfrev pulled() and we shouldn't advertise unnecessary command line options. diff -r 83ead8cb0ff2 -r 43cb150e74f9 hgext/largefiles/uisetup.py --- a/hgext/largefiles/uisetup.py Mon Apr 15 01:59:11 2013 +0200 +++ b/hgext/largefiles/uisetup.py Mon Apr 15 01:59:11 2013 +0200 @@ -79,7 +79,7 @@ entry = extensions.wrapcommand(commands.table, 'pull', overrides.overridepull) pullopt = [('', 'all-largefiles', None, - _('download all pulled versions of largefiles')), + _('download all pulled versions of largefiles (DEPRECATED)')), ('', 'lfrev', [], _('download largefiles for these revisions'), _('REV'))] entry[1].extend(pullopt)