~ubuntu-branches/ubuntu/trusty/juju-core/trusty-proposed

« back to all changes in this revision

Viewing changes to src/golang.org/x/net/CONTRIBUTING.md

  • Committer: Package Import Robot
  • Author(s): Robie Basak
  • Date: 2015-07-15 13:09:07 UTC
  • mfrom: (35.1.15 wily-proposed)
  • Revision ID: package-import@ubuntu.com-20150715130907-wqak1zpebzzdvy3q
Tags: 1.22.6-0ubuntu1~14.04.1
* No change backport to 14.04 (LP: #1469744). This results in the
  following packaging delta from the previous 1.20.11-0ubuntu0.14.04.1
  in trusty-updates:
  - distro-info added and libgo5 removed from Build-Depends.
  - Standards-Version bumped.
  - cloud-image-utils | cloud-utils added to juju-local Depends.
  - d/copyright updated.
  - dep8 tests updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Contributing to Go
 
2
 
 
3
Go is an open source project.
 
4
 
 
5
It is the work of hundreds of contributors. We appreciate your help!
 
6
 
 
7
 
 
8
## Filing issues
 
9
 
 
10
When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
 
11
 
 
12
1. What version of Go are you using (`go version`)?
 
13
2. What operating system and processor architecture are you using?
 
14
3. What did you do?
 
15
4. What did you expect to see?
 
16
5. What did you see instead?
 
17
 
 
18
General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
 
19
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
 
20
 
 
21
## Contributing code
 
22
 
 
23
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
 
24
before sending patches.
 
25
 
 
26
**We do not accept GitHub pull requests**
 
27
(we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review).
 
28
 
 
29
Unless otherwise noted, the Go source files are distributed under
 
30
the BSD-style license found in the LICENSE file.
 
31