| OLD | NEW |
| 1 <!--{ | 1 <!--{ |
| 2 "Title": "Contribution Guidelines" | 2 "Title": "Contribution Guidelines" |
| 3 }--> | 3 }--> |
| 4 | 4 |
| 5 <h2 id="Introduction">Introduction</h2> | 5 <h2 id="Introduction">Introduction</h2> |
| 6 | 6 |
| 7 <p> | 7 <p> |
| 8 This document explains how to contribute changes to the Go project. | 8 This document explains how to contribute changes to the Go project. |
| 9 It assumes you have installed Go using the | 9 It assumes you have installed Go using the |
| 10 <a href="install.html">installation instructions</a> and | 10 <a href="install.html">installation instructions</a> and |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 <p> | 132 <p> |
| 133 The code review server uses a Google Account to authenticate. | 133 The code review server uses a Google Account to authenticate. |
| 134 (If you can use the account to | 134 (If you can use the account to |
| 135 <a href="https://www.google.com/accounts/Login?hl=en&continue=http://www.goo gle.com/">sign in at google.com</a>, | 135 <a href="https://www.google.com/accounts/Login?hl=en&continue=http://www.goo gle.com/">sign in at google.com</a>, |
| 136 you can use it to sign in to the code review server. | 136 you can use it to sign in to the code review server. |
| 137 The email address you use on the Code Review site | 137 The email address you use on the Code Review site |
| 138 will be recorded in the <a href="http://code.google.com/p/go/source/list">Mercur ial change log</a> | 138 will be recorded in the <a href="http://code.google.com/p/go/source/list">Mercur ial change log</a> |
| 139 and in the <a href="/CONTRIBUTORS"><code>CONTRIBUTORS</code></a> file. | 139 and in the <a href="/CONTRIBUTORS"><code>CONTRIBUTORS</code></a> file. |
| 140 You can <a href="https://www.google.com/accounts/NewAccount">create a Google Acc ount</a> | 140 You can <a href="https://www.google.com/accounts/NewAccount">create a Google Acc ount</a> |
| 141 associated with any address where you receive email. | 141 associated with any address where you receive email. If the following process |
| 142 display invalid user name/password, try to· |
| 143 <a href="http://www.google.com/support/accounts/bin/static.py?hl=en&page=guide.c s&guide=1056283&topic=1056286&rd=1"> |
| 144 create a application-specific key</a>. |
| 142 </p> | 145 </p> |
| 143 | 146 |
| 144 <pre> | 147 <pre> |
| 145 $ cd $GOROOT | 148 $ cd $GOROOT |
| 146 $ hg code-login | 149 $ hg code-login |
| 147 Email (login for uploading to codereview.appspot.com): rsc@golang.org | 150 Email (login for uploading to codereview.appspot.com): rsc@golang.org |
| 148 Password for rsc@golang.org: | 151 Password for rsc@golang.org: |
| 149 | 152 |
| 150 Saving authentication cookies to /Users/rsc/.codereview_upload_cookies_coderevie w.appspot.com | 153 Saving authentication cookies to /Users/rsc/.codereview_upload_cookies_coderevie w.appspot.com |
| 151 </pre> | 154 </pre> |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 This rigmarole needs to be done only for your first submission. | 525 This rigmarole needs to be done only for your first submission. |
| 523 </p> | 526 </p> |
| 524 | 527 |
| 525 <p>Code that you contribute should use the standard copyright header:</p> | 528 <p>Code that you contribute should use the standard copyright header:</p> |
| 526 | 529 |
| 527 <pre> | 530 <pre> |
| 528 // Copyright 2012 The Go Authors. All rights reserved. | 531 // Copyright 2012 The Go Authors. All rights reserved. |
| 529 // Use of this source code is governed by a BSD-style | 532 // Use of this source code is governed by a BSD-style |
| 530 // license that can be found in the LICENSE file. | 533 // license that can be found in the LICENSE file. |
| 531 </pre> | 534 </pre> |
| OLD | NEW |