contribute.html 15.5 KB
Newer Older
Russ Cox's avatar
Russ Cox committed
1 2
<!-- Contributing to the Go project -->

Russ Cox's avatar
Russ Cox committed
3
<h2 id="Introduction">Introduction</h2>
Russ Cox's avatar
Russ Cox committed
4 5

<p>
6
This document explains how to contribute changes to the Go project.
Russ Cox's avatar
Russ Cox committed
7
It assumes you have installed Go using the
8 9 10
<a href="install.html">installation instructions</a> and
have <a href="code.html">written and tested your code</a>.
(Note that the <code>gccgo</code> frontend lives elsewhere;
11
see <a href="gccgo_contribute.html">Contributing to gccgo</a>.)
Russ Cox's avatar
Russ Cox committed
12 13
</p>

14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
<h2 id="Design">Discuss your design</h2>

<p>
The project welcomes submissions but please let everyone know what
you're working on if you want it to become part of the main repository.
</p>

<p>
Before undertaking to write something new for the Go project, send
mail to the <a href="http://groups.google.com/group/golang-nuts">mailing
list</a> to discuss what you plan to do.  This gives everyone a
chance to validate the design, helps prevent duplication of effort,
and ensures that the idea fits inside the goals for the language
and tools.  It also guarantees that the design is sound before code
is written; the code review tool is not the place for high-level
discussions.
</p>

<p>
In short, send mail before you code.
And don't start the discussion by mailing a change list!
</p>

37
<h2 id="Testing">Testing redux</h2>
Russ Cox's avatar
Russ Cox committed
38 39

<p>
40 41 42
You've <a href="code.html">written and tested your code</a>, but
before sending code out for review, run all the tests for the whole
tree to make sure the changes don't break other packages or programs:
Russ Cox's avatar
Russ Cox committed
43 44 45 46
</p>

<pre>
cd $GOROOT/src
47
make all
Russ Cox's avatar
Russ Cox committed
48 49 50
</pre>

<p>
51
The final line printed by <code>make all</code> should be of the form:
Russ Cox's avatar
Russ Cox committed
52 53 54 55 56 57 58 59 60 61 62 63 64
</p>

<pre>
<i>N</i> known bugs; 0 unexpected bugs
</pre>

<p>
The value of <i>N</i> varies over time, but the line must
say &ldquo;<code>0 unexpected bugs</code>&rdquo; and must not
add &ldquo;<code>test output differs</code>.&rdquo;
</p>


Russ Cox's avatar
Russ Cox committed
65
<h2 id="Code_review">Code review</h2>
Russ Cox's avatar
Russ Cox committed
66 67 68 69

<p>
Changes to Go must be reviewed before they are submitted,
no matter who makes the change.
70 71
(In exceptional cases, such as fixing a build, the review can
follow shortly after submitting.)
Russ Cox's avatar
Russ Cox committed
72 73 74 75
A Mercurial extension helps manage the code review process.
The extension is included in the Go source tree but needs
to be added to your Mercurial configuration.
</p>
76

77 78
<h3>Caveat for Mercurial aficionados</h3>

79
<p>
Russ Cox's avatar
Russ Cox committed
80
<i>Using Mercurial with the code review extension is not the same
81 82 83 84 85 86 87 88 89 90 91
as using standard Mercurial.</i>
</p>

<p>
The Go repository is maintained as a single line of reviewed changes;
we prefer to avoid the complexity of Mercurial's arbitrary change graph.
The code review extension helps here: its <code>hg submit</code> command
automatically checks for and warns about the local repository
being out of date compared to the remote one.
The <code>hg submit</code> command also verifies other
properties about the Go repository.
Russ Cox's avatar
Russ Cox committed
92
For example,
93 94 95 96
it checks that Go code being checked in is formatted in the standard style,
as defined by <a href="/cmd/gofmt">gofmt</a>,
and it checks that the author of the code is properly recorded for
<a href="#copyright">copyright purposes</a>.
Russ Cox's avatar
Russ Cox committed
97 98 99
</p>

<p>
100 101 102 103 104 105 106 107 108 109
To help ensure changes are only created by <code>hg submit</code>,
the code review extension disables the standard <code>hg commit</code>
command.
</p>

<p>
Mercurial power users: To allow Go contributors to take advantage of
Mercurial's functionality for local revision control, it might be interesting
to explore how the code review extension can be made to work alongside
the Mercurial Queues extension.
Russ Cox's avatar
Russ Cox committed
110 111 112 113 114 115 116 117 118
</p>

<h3>Configure the extension</h3>

<p>Edit <code>$GOROOT/.hg/hgrc</code> to add:</p>

<pre>
[extensions]
codereview = YOUR_GO_ROOT/lib/codereview/codereview.py
119 120 121

[ui]
username = Your Name &lt;you@server.dom&gt;
Russ Cox's avatar
Russ Cox committed
122 123 124 125
</pre>

<p>Replace YOUR_GO_ROOT with the value of <code>$GOROOT</code>.
The Mercurial configuration file format does not allow environment variable substitution.
126 127
The <code>username</code> information will not be used unless
you are a committer (see below), but Mercurial complains if it is missing.
Russ Cox's avatar
Russ Cox committed
128 129 130 131 132 133 134
</p>

<h3>Log in to the code review site.</h3>

<p>
The code review server uses a Google Account to authenticate.
(If you can use the account to
Russ Cox's avatar
Russ Cox committed
135
<a href="https://www.google.com/accounts/Login?hl=en&amp;continue=http://www.google.com/">sign in at google.com</a>,
136 137 138 139 140 141
you can use it to sign in to the code review server.
The email address you use on the Code Review site
will be recorded in the <a href="http://code.google.com/p/go/source/list">Mercurial change log</a>
and in the <a href="/CONTRIBUTORS"><code>CONTRIBUTORS</code></a> file.
You can <a href="https://www.google.com/accounts/NewAccount">create a Google Account</a>
associated with any address where you receive email.
Russ Cox's avatar
Russ Cox committed
142 143 144 145
</p>

<pre>
$ cd $GOROOT
146
$ hg code-login
Russ Cox's avatar
Russ Cox committed
147 148 149 150 151 152 153 154
Email (login for uploading to codereview.appspot.com): rsc@golang.org
Password for rsc@golang.org:

Saving authentication cookies to /Users/rsc/.codereview_upload_cookies_codereview.appspot.com
</pre>

<h3>Configure your account settings.</h3>

Russ Cox's avatar
Russ Cox committed
155
<p>Edit your <a href="http://codereview.appspot.com/settings">code review settings</a>.
Russ Cox's avatar
Russ Cox committed
156
Grab a nickname.
Russ Cox's avatar
Russ Cox committed
157
Many people prefer to set the Context option to
Russ Cox's avatar
Russ Cox committed
158 159 160 161 162 163 164 165
&ldquo;Whole file&rdquo; to see more context when reviewing changes.
</p>

<p>Once you have chosen a nickname in the settings page, others
can use that nickname as a shorthand for naming reviewers and the CC list.
For example, <code>rsc</code> is an alias for <code>rsc@golang.org</code>.
</p>

166
<h3>Make a change</h3>
Russ Cox's avatar
Russ Cox committed
167

168
<p>
Russ Cox's avatar
Russ Cox committed
169 170 171
The entire checked-out tree is writable.
If you need to edit files, just edit them: Mercurial will figure out which ones changed.
You do need to inform Mercurial of added, removed, copied, or renamed files,
Russ Cox's avatar
Russ Cox committed
172
by running
Russ Cox's avatar
Russ Cox committed
173 174 175 176 177 178
<code>hg add</code>,
<code>hg rm</code>,
<code>hg cp</code>,
or
<code>hg mv</code>.
</p>
179

Russ Cox's avatar
Russ Cox committed
180
<p>When you are ready to send a change out for review, run</p>
181

Russ Cox's avatar
Russ Cox committed
182 183 184
<pre>
$ hg change
</pre>
185

Russ Cox's avatar
Russ Cox committed
186 187 188 189 190
<p>from any directory in your Go repository.
Mercurial will open a change description file in your editor.
(It uses the editor named by the <code>$EDITOR</code> environment variable, <code>vi</code> by default.)
The file will look like:
</p>
191

Russ Cox's avatar
Russ Cox committed
192 193 194 195
<pre>
# Change list.
# Lines beginning with # are ignored.
# Multi-line values should be indented.
196

Russ Cox's avatar
Russ Cox committed
197 198
Reviewer:
CC:
Russ Cox's avatar
Russ Cox committed
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213

Description:
	&lt;enter description here&gt;

Files:
	src/pkg/math/sin.go
	src/pkg/math/tan.go
	src/pkg/regexp/regexp.go
</pre>

<p>
The <code>Reviewer</code> line lists the reviewers assigned
to this change, and the <code>CC</code> line lists people to
notify about the change.
These can be code review nicknames or arbitrary email addresses.
214 215 216 217
If you don't know who is best to review the change, set the
reviewer field to the
<a href="http://groups.google.com/group/golang-dev">golang-dev@googlegroups.com</a>
mailing list.
Russ Cox's avatar
Russ Cox committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
</p>

<p>
Replace &ldquo;<code>&lt;enter description here&gt;</code>&rdquo;
with a description of your change.
The first line of the change description is conventionally
a one-line summary of the change and is used as the
subject for code review mail; the rest of the
description elaborates.
</p>

<p>
The <code>Files</code> section lists all the modified files
in your client.
It is best to keep unrelated changes in different change lists.
In this example, we can include just the changes to package <code>math</code>
by deleting the line mentioning <code>regexp.go</code>.
Russ Cox's avatar
Russ Cox committed
235 236 237 238
</p>

<p>
After editing, the template might now read:
Russ Cox's avatar
Russ Cox committed
239 240 241 242 243 244 245
</p>

<pre>
# Change list.
# Lines beginning with # are ignored.
# Multi-line values should be indented.

246
Reviewer: golang-dev@googlegroups.com
Russ Cox's avatar
Russ Cox committed
247 248 249 250
CC: math-nuts@swtch.com

Description:
	Sin, Cos, Tan: improved precision for very large arguments
Russ Cox's avatar
Russ Cox committed
251

Russ Cox's avatar
Russ Cox committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
	See Bimmler and Shaney, ``Extreme sinusoids,'' J. Math 3(14).
	Fixes issue 159.

Files:
	src/pkg/math/sin.go
	src/pkg/math/tan.go
</pre>

<p>
The special sentence &ldquo;Fixes issue 159.&rdquo; associates
the change with issue 159 in the <a href="http://code.google.com/p/go/issues/list">Go issue tracker</a>.
When this change is eventually submitted, the issue
tracker will automatically mark the issue as fixed.
</p>

<p>
Save the file and exit the editor.</p>

<p>
The code review server assigns your change an issue number and URL,
which <code>hg change</code> will print, something like:
</p>

<pre>
CL created: http://codereview.appspot.com/99999
</pre>

<p>
If you need to re-edit the change description,
run <code>hg change 99999</code>.
</p>

<p>
You can see a list of your pending changes by running <code>hg pending</code> (<code>hg p</code> for short).
</p>


<h3>Synchronize your client</h3>

<p>While you were working, others might have submitted changes
to the repository.  To update your client, run</p>

<pre>
$ hg sync
</pre>

<p>(For Mercurial fans, <code>hg sync</code> runs <code>hg pull -u</code>
but then also synchronizes the local change list state against the new data.)</p>

<p>
If files you were editing have changed, Mercurial does its best to merge the
Russ Cox's avatar
Russ Cox committed
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
remote changes into your local changes.  It may leave some files to merge by hand.
</p>

<p>
For example, suppose you have edited <code>flag_test.go</code> but
someone else has committed an independent change.
When you run <code>hg sync</code>, you will get the (scary-looking) output
(emphasis added):

<pre>
$ hg sync
adding changesets
adding manifests
adding file changes
added 1 changeset with 2 changes to 2 files
getting src/pkg/flag/flag.go
couldn't find merge tool hgmerge
merging src/pkg/flag/flag_test.go
warning: conflicts during merge.
<i>merging src/pkg/flag/flag_test.go failed!</i>
1 file updated, 0 files merged, 0 files removed, 1 file unresolved
use 'hg resolve' to retry unresolved file merges
Russ Cox's avatar
Russ Cox committed
325
$
Russ Cox's avatar
Russ Cox committed
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
</pre>

<p>
The only important part in that transcript is the italicized line:
Mercurial failed to merge your changes with the independent change.
When this happens, Mercurial leaves both edits in the file,
marked by <code>&lt;&lt;&lt;&lt;&lt;&lt;&lt;</code> and
<code>&gt;&gt;&gt;&gt;&gt;&gt;&gt;</code>.
it is now your job to edit the file to combine them.
Continuing the example, searching for those strings in <code>flag_test.go</code>
might turn up:
</p>

<pre>
	VisitAll(visitor);
&lt;&lt;&lt;&lt;&lt;&lt;&lt; local
	if len(m) != 7 {
=======
	if len(m) != 8 {
&gt;&gt;&gt;&gt;&gt;&gt;&gt; other
		t.Error("VisitAll misses some flags");
</pre>

<p>
Mercurial doesn't show it, but suppose the original text that both edits
started with was 6; you added 1 and the other change added 2,
352
so the correct answer might now be 9.  First, edit the section
Russ Cox's avatar
Russ Cox committed
353 354
to remove the markers and leave the correct code:
</p>
Russ Cox's avatar
Russ Cox committed
355 356

<pre>
Russ Cox's avatar
Russ Cox committed
357 358 359
	VisitAll(visitor);
	if len(m) != 9 {
		t.Error("VisitAll misses some flags");
Russ Cox's avatar
Russ Cox committed
360 361
</pre>

Russ Cox's avatar
Russ Cox committed
362
<p>
363
Then ask Mercurial to mark the conflict as resolved:
Russ Cox's avatar
Russ Cox committed
364 365
</p>

366 367 368 369
<pre>
$ hg resolve -m flag_test.go
</pre>

Russ Cox's avatar
Russ Cox committed
370
<p>
Russ Cox's avatar
Russ Cox committed
371 372
If you had been editing the file, say for debugging, but do not
care to preserve your changes, you can run
Russ Cox's avatar
Russ Cox committed
373
<code>hg revert flag_test.go</code> to abandon your
374 375
changes, but you may still need to run
<code>hg resolve -m</code> to mark the conflict resolved.
Russ Cox's avatar
Russ Cox committed
376 377
</p>

Russ Cox's avatar
Russ Cox committed
378 379 380 381 382 383 384 385 386 387
<h3>Mail the change for review</h3>

<p>To send out a change for review, run <code>hg mail</code> using the change list number
assigned during <code>hg change</code>:</p>

<pre>
$ hg mail 99999
</pre>

<p>You can add to the <code>Reviewer:</code> and <code>CC:</code> lines
Russ Cox's avatar
Russ Cox committed
388 389
using the <code>-r</code> or <code>--cc</code> options.
In the above example, we could have left the <code>Reviewer</code> and <code>CC</code>
Russ Cox's avatar
Russ Cox committed
390 391 392 393
lines blank and then run:
</p>

<pre>
394
$ hg mail -r golang-dev@googlegroups.com --cc math-nuts@swtch.com 99999
Russ Cox's avatar
Russ Cox committed
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
</pre>

<p>to achieve the same effect.</p>

<p>Note that <code>-r</code> and <code>--cc</code> cannot be spelled <code>--r</code> or <code>-cc</code>.</p>


<h3>Reviewing code</h3>

<p>
Running <code>hg mail</code> will send an email to you and the reviewers
asking them to visit the issue's URL and make coments on the change.
When done, the reviewer clicks &ldquo;Publish and Mail comments&rdquo;
to send comments back.
</p>


<h3>Revise and upload</h3>

<p>You will probably revise your code in response to the reviewer comments.
When you have revised the code and are ready for another round of review, run
</p>

<pre>
$ hg upload 99999
</pre>

<p>to upload the latest copy.
You might also visit the code review web page and reply to the comments,
letting the reviewer know that you've addressed them or explain why you
haven't.  When you're done replying, click &ldquo;Publish and Mail comments&rdquo;
to send the line-by-line replies and any other comments.
A common acronym in such mails is <code>PTAL</code>: please take another look.
</p>
<p>
The reviewer can comment on the new copy, and the process repeats.
The reviewer approves the change by replying with a mail that says
<code>LGTM</code>: looks good to me.
</p>

435
<h3>Submit the change after the review</h3>
Russ Cox's avatar
Russ Cox committed
436 437

<p>
438
After the code has been <code>LGTM</code>'ed, it is time to submit
Russ Cox's avatar
Russ Cox committed
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
it to the Mercurial repository.
If you are a committer, you can run:
</p>

<pre>
$ hg submit 99999
</pre>

<p>
This checks the change into the repository.
The change description will include a link to the code review,
and the code review will be updated with a link to the change
in the repository.
</p>

<p>
If your local copy of the repository is out of date,
<code>hg submit</code>
will refuse the change:
</p>

<pre>
461
$ hg submit 99999
Russ Cox's avatar
Russ Cox committed
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
local repository out of date; must sync before submit
</pre>

<p>
If you are not a committer, you cannot submit the change directly.
Instead, a committer, usually the reviewer who said <code>LGTM</code>,
will run:
</p>

<pre>
$ hg clpatch 99999
$ hg submit 99999
</pre>

<p>The <code>clpatch</code> command imports your change 99999 into
the committer's local Mercurial client, at which point the committer
can check or test the code more.
(Anyone can run <code>clpatch</code> to try a change that
has been uploaded to the code review server.)
The <code>submit</code> command submits the code.  You will be listed as the
author, but the change message will also indicate who the committer was.
Russ Cox's avatar
Russ Cox committed
483 484
Your local client will notice that the change has been submitted
when you next run <code>hg sync</code>.
Russ Cox's avatar
Russ Cox committed
485 486 487 488 489
</p>


<h3 id="copyright">Copyright</h3>

490 491 492 493 494
<p>Files in the Go repository don't list author names,
both to avoid clutter and to avoid having to keep the lists up to date.
Instead, your name will appear in the <a href="http://code.google.com/p/go/source/list">Mercurial change log</a>
and in the <a href="/CONTRIBUTORS"><code>CONTRIBUTORS</code></a> file
and perhaps the <a href="/AUTHORS"><code>AUTHORS</code></a> file.
Russ Cox's avatar
Russ Cox committed
495 496
</p>

497 498 499 500 501 502 503 504 505
<p>The <a href="/CONTRIBUTORS"><code>CONTRIBUTORS</code></a> file
defines who the Go contributors&mdash;the people&mdash;are;
the <a href="/AUTHORS"><code>AUTHORS</code></a> file, which defines
who &ldquo;The Go Authors&rdquo;&mdash;the copyright holders&mdash;are.
The Go developers at Google will update these files when submitting
your first change.
In order for them to do that, you need to have completed one of the
contributor license agreements:
<ul>
506
<li>
Russ Cox's avatar
Russ Cox committed
507
If you are the copyright holder, you will need to agree to
508
the <a href="http://code.google.com/legal/individual-cla-v1.0.html">individual
509 510 511 512
contributor license agreement</a>, which can be completed online.
</li>
<li>
If your organization is the copyright holder, the organization
Russ Cox's avatar
Russ Cox committed
513
will need to agree to the <a href="http://code.google.com/legal/corporate-cla-v1.0.html">corporate contributor license agreement</a>.
514
(If the copyright holder for your code has already completed the
Russ Cox's avatar
Russ Cox committed
515
agreement in connection with another Google open source project,
516
it does not need to be completed again.)
517 518
</li>
</ul>
Russ Cox's avatar
Russ Cox committed
519

520
<p>
521
This rigmarole needs to be done only for your first submission.
522
</p>
523 524 525 526 527 528 529 530

<p>Code that you contribute should use the standard copyright header:</p>

<pre>
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
</pre>