OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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:])) |
OLD | NEW |