| OLD | NEW |
| 1 # git-cl -- a git-command for integrating reviews on Rietveld | 1 # git-cl -- a git-command for integrating reviews on Rietveld |
| 2 # Copyright (C) 2008 Evan Martin <martine@danga.com> | 2 # Copyright (C) 2008 Evan Martin <martine@danga.com> |
| 3 | 3 |
| 4 == Background | 4 == Background |
| 5 Rietveld, also known as http://codereview.appspot.com, is a nice tool | 5 Rietveld, also known as http://codereview.appspot.com, is a nice tool |
| 6 for code reviews. You upload a patch (and some other data) and it lets | 6 for code reviews. You upload a patch (and some other data) and it lets |
| 7 others comment on your patch. | 7 others comment on your patch. |
| 8 | 8 |
| 9 For more on how this all works conceptually, please see README.codereview. | 9 For more on how this all works conceptually, please see README.codereview. |
| 10 The remainder of this document is the nuts and bolts of using git-cl. | 10 The remainder of this document is the nuts and bolts of using git-cl. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 $ git cl status | 43 $ git cl status |
| 44 | 44 |
| 45 Edit the issue association on the current branch: | 45 Edit the issue association on the current branch: |
| 46 $ git cl issue 1234 | 46 $ git cl issue 1234 |
| 47 | 47 |
| 48 Patch in a review: | 48 Patch in a review: |
| 49 $ git cl patch <url to full patch> | 49 $ git cl patch <url to full patch> |
| 50 Try "git cl patch --help" for more options. | 50 Try "git cl patch --help" for more options. |
| 51 | 51 |
| 52 vim: tw=72 : | 52 vim: tw=72 : |
| OLD | NEW |