| OLD | NEW |
| 1 depot_tools_tutorial(7) | 1 depot_tools_tutorial(7) |
| 2 ======================= | 2 ======================= |
| 3 | 3 |
| 4 NAME | 4 NAME |
| 5 ---- | 5 ---- |
| 6 depot_tools_tutorial - A tutorial introduction to the Chromium depot_tools git | 6 depot_tools_tutorial - A tutorial introduction to the Chromium depot_tools git |
| 7 extensions. | 7 extensions. |
| 8 | 8 |
| 9 DESCRIPTION | 9 DESCRIPTION |
| 10 ----------- | 10 ----------- |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 endif::backend-xhtml11[] | 129 endif::backend-xhtml11[] |
| 130 | 130 |
| 131 BOOTSTRAPPING CONFIGURATION | 131 BOOTSTRAPPING CONFIGURATION |
| 132 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 132 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 133 If you have never used git before, you’ll need to set some global git | 133 If you have never used git before, you’ll need to set some global git |
| 134 configurations; substitute your name and email address in the following | 134 configurations; substitute your name and email address in the following |
| 135 commands: | 135 commands: |
| 136 | 136 |
| 137 [subs="quotes,attributes"] | 137 [subs="quotes,attributes"] |
| 138 ---- | 138 ---- |
| 139 [white]**$ git config --global user.name ``John Doe''** | 139 [white]**$ git config --global user.name "John Doe"** |
| 140 [white]**$ git config --global user.email ``jdoe@email.com''** | 140 [white]**$ git config --global user.email "jdoe@email.com"** |
| 141 [white]**$ git config --global core.autocrlf false** | 141 [white]**$ git config --global core.autocrlf false** |
| 142 [white]**$ git config --global core.filemode false** | 142 [white]**$ git config --global core.filemode false** |
| 143 [white]**$** # and for fun! | 143 [white]**$** # and for fun! |
| 144 [white]**$ git config --global color.ui true** | 144 [white]**$ git config --global color.ui true** |
| 145 ---- | 145 ---- |
| 146 | 146 |
| 147 TL;DR | 147 TL;DR |
| 148 ----- | 148 ----- |
| 149 [postsubs="quotes"] | 149 [postsubs="quotes"] |
| 150 ---- | 150 ---- |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 dependencies to pull in. This file also contains 'hooks'. | 424 dependencies to pull in. This file also contains 'hooks'. |
| 425 | 425 |
| 426 LKGR:: | 426 LKGR:: |
| 427 Last Known Good Revision. This is a linkgit:git-tag[1] which tracks the last | 427 Last Known Good Revision. This is a linkgit:git-tag[1] which tracks the last |
| 428 version of `origin/master` which has passed the full set of testing on the | 428 version of `origin/master` which has passed the full set of testing on the |
| 429 link:http://build.chromium.org[main Chromium waterfall]. | 429 link:http://build.chromium.org[main Chromium waterfall]. |
| 430 | 430 |
| 431 include::_footer.txt[] | 431 include::_footer.txt[] |
| 432 | 432 |
| 433 // vim: ft=asciidoc: | 433 // vim: ft=asciidoc: |
| OLD | NEW |