comparison mercurial_all_paths.py @ 41:b8a7342fbf23

outgoingall and incomingall can't handle -g as it is already taken, sticking to just --group
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sat, 24 Sep 2016 23:06:23 +0200
parents 6dae5ed53f22
children 2d6c7e0c1b2f
comparison
equal deleted inserted replaced
40:1c22cd2904eb 41:b8a7342fbf23
79 _('[-g GROUP] [--ignore-errors] <push options>')), 79 _('[-g GROUP] [--ignore-errors] <push options>')),
80 "pullall": ( 80 "pullall": (
81 pullall, 81 pullall,
82 EXT_OPTS + _original_options('pull'), 82 EXT_OPTS + _original_options('pull'),
83 _('[-g GROUP] [--ignore-errors] <pull options>')), 83 _('[-g GROUP] [--ignore-errors] <pull options>')),
84 # For incoming and outgoing -g is taken (--git diff format)
84 "incomingall": ( 85 "incomingall": (
85 incomingall, 86 incomingall,
86 EXT_OPTS + _original_options('incoming'), 87 EXT_OPTS + _original_options('incoming'),
87 _('[-g GROUP] [--ignore-errors] <incoming options>')), 88 _('[--group GROUP] [--ignore-errors] <incoming options>')),
88 "outgoingall": ( 89 "outgoingall": (
89 outgoingall, 90 outgoingall,
90 EXT_OPTS + _original_options('outgoing'), 91 EXT_OPTS + _original_options('outgoing'),
91 _('[-g GROUP] [--ignore-errors] <outgoing options>')), 92 _('[--group GROUP] [--ignore-errors] <outgoing options>')),
92 } 93 }
93 94
94 testedwith = '2.7 2.9 3.0 3.3 3.6 3.7 3.8' 95 testedwith = '2.7 2.9 3.0 3.3 3.6 3.7 3.8'
95 buglink = 'https://bitbucket.org/Mekk/mercurial-all_paths/issues' 96 buglink = 'https://bitbucket.org/Mekk/mercurial-all_paths/issues'