| OLD | NEW |
| 1 # Copyright 2008-2009, Google Inc. | 1 # Copyright 2008-2009, Google Inc. |
| 2 | 2 |
| 3 gclient is a tool for managing a modular checkout of source code | 3 gclient is a tool for managing a modular checkout of source code |
| 4 from multiple source code repositories. It wraps underlying source | 4 from multiple source code repositories. It wraps underlying source |
| 5 code management commands to provide support for distributing tree | 5 code management commands to provide support for distributing tree |
| 6 updates, status commands, and diffs across multiple checked-out | 6 updates, status commands, and diffs across multiple checked-out |
| 7 working directories. | 7 working directories. |
| 8 | 8 |
| 9 | 9 |
| 10 The gclient script is controlled by a ".gclient" file at the top | 10 The gclient script is controlled by a ".gclient" file at the top |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 The value is the URL from which that directory will be checked out. | 73 The value is the URL from which that directory will be checked out. |
| 74 If there is no address scheme (that is, no "http:" or "svn:" prefix), | 74 If there is no address scheme (that is, no "http:" or "svn:" prefix), |
| 75 then the value must begin with a slash and is treated relative to the | 75 then the value must begin with a slash and is treated relative to the |
| 76 root of the solution's repository. | 76 root of the solution's repository. |
| 77 | 77 |
| 78 The URL typically contains a specific revision or change number (as | 78 The URL typically contains a specific revision or change number (as |
| 79 appropriate for the underlying SCM system) to "freeze" the external | 79 appropriate for the underlying SCM system) to "freeze" the external |
| 80 software at a specific, known state. Alternatively, if there is no | 80 software at a specific, known state. Alternatively, if there is no |
| 81 revision or change number, the URL will track the latest changes on the | 81 revision or change number, the URL will track the latest changes on the |
| 82 specific trunk or branch. | 82 specific trunk or branch. |
| OLD | NEW |