OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 """Meta checkout manager supporting both Subversion and GIT.""" | 6 """Meta checkout manager supporting both Subversion and GIT.""" |
7 # Files | 7 # Files |
8 # .gclient : Current client configuration, written by 'config' command. | 8 # .gclient : Current client configuration, written by 'config' command. |
9 # Format is a Python script defining 'solutions', a list whose | 9 # Format is a Python script defining 'solutions', a list whose |
10 # entries each are maps binding the strings "name" and "url" | 10 # entries each are maps binding the strings "name" and "url" |
(...skipping 2032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2043 help='GIT ONLY - Reduces the size/time of the checkout at ' | 2043 help='GIT ONLY - Reduces the size/time of the checkout at ' |
2044 'the cost of no history. Requires Git 1.9+') | 2044 'the cost of no history. Requires Git 1.9+') |
2045 parser.add_option('--shallow', action='store_true', | 2045 parser.add_option('--shallow', action='store_true', |
2046 help='GIT ONLY - Do a shallow clone into the cache dir. ' | 2046 help='GIT ONLY - Do a shallow clone into the cache dir. ' |
2047 'Requires Git 1.9+') | 2047 'Requires Git 1.9+') |
2048 parser.add_option('--no_bootstrap', '--no-bootstrap', | 2048 parser.add_option('--no_bootstrap', '--no-bootstrap', |
2049 action='store_true', | 2049 action='store_true', |
2050 help='Don\'t bootstrap from Google Storage.') | 2050 help='Don\'t bootstrap from Google Storage.') |
2051 parser.add_option('--ignore_locks', action='store_true', | 2051 parser.add_option('--ignore_locks', action='store_true', |
2052 help='GIT ONLY - Ignore cache locks.') | 2052 help='GIT ONLY - Ignore cache locks.') |
2053 parser.add_option('--lock_timeout', type='int', default=0, | 2053 parser.add_option('--lock_timeout', type='int', default=5000, |
2054 help='GIT ONLY - Deadline (in seconds) to wait for git ' | 2054 help='GIT ONLY - Deadline (in seconds) to wait for git ' |
2055 'cache lock to become available.') | 2055 'cache lock to become available. Default is %default.') |
2056 (options, args) = parser.parse_args(args) | 2056 (options, args) = parser.parse_args(args) |
2057 client = GClient.LoadCurrentConfig(options) | 2057 client = GClient.LoadCurrentConfig(options) |
2058 | 2058 |
2059 if not client: | 2059 if not client: |
2060 raise gclient_utils.Error('client not configured; see \'gclient config\'') | 2060 raise gclient_utils.Error('client not configured; see \'gclient config\'') |
2061 | 2061 |
2062 if options.revisions and options.head: | 2062 if options.revisions and options.head: |
2063 # TODO(maruel): Make it a parser.error if it doesn't break any builder. | 2063 # TODO(maruel): Make it a parser.error if it doesn't break any builder. |
2064 print('Warning: you cannot use both --head and --revision') | 2064 print('Warning: you cannot use both --head and --revision') |
2065 | 2065 |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2319 | 2319 |
2320 | 2320 |
2321 if '__main__' == __name__: | 2321 if '__main__' == __name__: |
2322 try: | 2322 try: |
2323 sys.exit(main(sys.argv[1:])) | 2323 sys.exit(main(sys.argv[1:])) |
2324 except KeyboardInterrupt: | 2324 except KeyboardInterrupt: |
2325 sys.stderr.write('interrupted\n') | 2325 sys.stderr.write('interrupted\n') |
2326 sys.exit(1) | 2326 sys.exit(1) |
2327 | 2327 |
2328 # vim: ts=2:sw=2:tw=80:et: | 2328 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |