##// END OF EJS Templates
status: match category text in the option description...
Joerg Sonnenberger -
r45694:487df367 default
parent child Browse files
Show More
@@ -6663,7 +6663,7 b' def shelve(ui, repo, *pats, **opts):'
6663 6663 (b'm', b'modified', None, _(b'show only modified files')),
6664 6664 (b'a', b'added', None, _(b'show only added files')),
6665 6665 (b'r', b'removed', None, _(b'show only removed files')),
6666 (b'd', b'deleted', None, _(b'show only deleted (but tracked) files')),
6666 (b'd', b'deleted', None, _(b'show only missing files')),
6667 6667 (b'c', b'clean', None, _(b'show only files without changes')),
6668 6668 (b'u', b'unknown', None, _(b'show only unknown (not tracked) files')),
6669 6669 (b'i', b'ignored', None, _(b'show only ignored files')),
@@ -182,7 +182,7 b' help'
182 182 -m --modified show only modified files
183 183 -a --added show only added files
184 184 -r --removed show only removed files
185 -d --deleted show only deleted (but tracked) files
185 -d --deleted show only missing files
186 186 -c --clean show only files without changes
187 187 -u --unknown show only unknown (not tracked) files
188 188 -i --ignored show only ignored files
@@ -730,7 +730,7 b' Test command without options'
730 730 -m --modified show only modified files
731 731 -a --added show only added files
732 732 -r --removed show only removed files
733 -d --deleted show only deleted (but tracked) files
733 -d --deleted show only missing files
734 734 -c --clean show only files without changes
735 735 -u --unknown show only unknown (not tracked) files
736 736 -i --ignored show only ignored files
General Comments 0
You need to be logged in to leave comments. Login now