Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: git_cache.py

Issue 436963005: Added hyphen-only options (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | git_cl.py » ('j') | git_cl.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """A git command for managing a local cache of git repositories.""" 6 """A git command for managing a local cache of git repositories."""
7 7
8 from __future__ import print_function 8 from __future__ import print_function
9 import errno 9 import errno
10 import logging 10 import logging
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 535
536 @subcommand.usage('[url of repo to add to or update in cache]') 536 @subcommand.usage('[url of repo to add to or update in cache]')
537 def CMDpopulate(parser, args): 537 def CMDpopulate(parser, args):
538 """Ensure that the cache has all up-to-date objects for the given repo.""" 538 """Ensure that the cache has all up-to-date objects for the given repo."""
539 parser.add_option('--depth', type='int', 539 parser.add_option('--depth', type='int',
540 help='Only cache DEPTH commits of history') 540 help='Only cache DEPTH commits of history')
541 parser.add_option('--shallow', '-s', action='store_true', 541 parser.add_option('--shallow', '-s', action='store_true',
542 help='Only cache 10000 commits of history') 542 help='Only cache 10000 commits of history')
543 parser.add_option('--ref', action='append', 543 parser.add_option('--ref', action='append',
544 help='Specify additional refs to be fetched') 544 help='Specify additional refs to be fetched')
545 parser.add_option('--no_bootstrap', action='store_true', 545 parser.add_option('--no_bootstrap', action='store_true',
iannucci 2014/08/01 23:49:21 this one?
546 help='Don\'t bootstrap from Google Storage') 546 help='Don\'t bootstrap from Google Storage')
547 parser.add_option('--ignore_locks', action='store_true', 547 parser.add_option('--ignore_locks', '--ignore-locks',
548 action='store_true',
548 help='Don\'t try to lock repository') 549 help='Don\'t try to lock repository')
549 550
550 options, args = parser.parse_args(args) 551 options, args = parser.parse_args(args)
551 if not len(args) == 1: 552 if not len(args) == 1:
552 parser.error('git cache populate only takes exactly one repo url.') 553 parser.error('git cache populate only takes exactly one repo url.')
553 url = args[0] 554 url = args[0]
554 555
555 mirror = Mirror(url, refs=options.ref) 556 mirror = Mirror(url, refs=options.ref)
556 kwargs = { 557 kwargs = {
557 'verbose': options.verbose, 558 'verbose': options.verbose,
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 return options, args 632 return options, args
632 633
633 634
634 def main(argv): 635 def main(argv):
635 dispatcher = subcommand.CommandDispatcher(__name__) 636 dispatcher = subcommand.CommandDispatcher(__name__)
636 return dispatcher.execute(OptionParser(), argv) 637 return dispatcher.execute(OptionParser(), argv)
637 638
638 639
639 if __name__ == '__main__': 640 if __name__ == '__main__':
640 sys.exit(main(sys.argv[1:])) 641 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « no previous file | git_cl.py » ('j') | git_cl.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698