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="/doc/install">installation instructions</a> and |
11 have <a href="code.html">written and tested your code</a>. | 11 have <a href="code.html">written and tested your code</a>. |
12 (Note that the <code>gccgo</code> frontend lives elsewhere; | 12 (Note that the <code>gccgo</code> frontend lives elsewhere; |
13 see <a href="gccgo_contribute.html">Contributing to gccgo</a>.) | 13 see <a href="gccgo_contribute.html">Contributing to gccgo</a>.) |
14 </p> | 14 </p> |
15 | 15 |
16 <h2 id="Design">Discuss your design</h2> | 16 <h2 id="Design">Discuss your design</h2> |
17 | 17 |
18 <p> | 18 <p> |
19 The project welcomes submissions but please let everyone know what | 19 The project welcomes submissions but please let everyone know what |
20 you're working on if you want it to become part of the main repository. | 20 you're working on if you want it to become part of the main repository. |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 This rigmarole needs to be done only for your first submission. | 522 This rigmarole needs to be done only for your first submission. |
523 </p> | 523 </p> |
524 | 524 |
525 <p>Code that you contribute should use the standard copyright header:</p> | 525 <p>Code that you contribute should use the standard copyright header:</p> |
526 | 526 |
527 <pre> | 527 <pre> |
528 // Copyright 2012 The Go Authors. All rights reserved. | 528 // Copyright 2012 The Go Authors. All rights reserved. |
529 // Use of this source code is governed by a BSD-style | 529 // Use of this source code is governed by a BSD-style |
530 // license that can be found in the LICENSE file. | 530 // license that can be found in the LICENSE file. |
531 </pre> | 531 </pre> |
OLD | NEW |