|
|
@ -7,8 +7,9 @@ a just a few small guidelines you need to follow. |
|
|
## Contributor License Agreement ## |
|
|
## Contributor License Agreement ## |
|
|
|
|
|
|
|
|
Contributions to any Google project must be accompanied by a Contributor |
|
|
Contributions to any Google project must be accompanied by a Contributor |
|
|
License Agreement. This simply gives Google permission to use and redistribute |
|
|
|
|
|
your contributions as part of the project. |
|
|
|
|
|
|
|
|
License Agreement. This is not a copyright **assignment**, it simply gives |
|
|
|
|
|
Google permission to use and redistribute your contributions as part of the |
|
|
|
|
|
project. |
|
|
|
|
|
|
|
|
* If you are an individual writing original source code and you're sure you |
|
|
* If you are an individual writing original source code and you're sure you |
|
|
own the intellectual property, then you'll need to sign an [individual |
|
|
own the intellectual property, then you'll need to sign an [individual |
|
|
@ -40,7 +41,7 @@ again. |
|
|
|
|
|
|
|
|
1. Go makes it very simple to ensure properly formatted code, so always run |
|
|
1. Go makes it very simple to ensure properly formatted code, so always run |
|
|
`go fmt` on your code before committing it. You should also run |
|
|
`go fmt` on your code before committing it. You should also run |
|
|
[golint][] over your code. As noted in the golint readme, it's not |
|
|
|
|
|
|
|
|
[golint][] over your code. As noted in the [golint readme][], it's not |
|
|
strictly necessary that your code be completely "lint-free", but this will |
|
|
strictly necessary that your code be completely "lint-free", but this will |
|
|
help you find common style issues. |
|
|
help you find common style issues. |
|
|
|
|
|
|
|
|
@ -58,6 +59,7 @@ again. |
|
|
|
|
|
|
|
|
[forking]: https://help.github.com/articles/fork-a-repo |
|
|
[forking]: https://help.github.com/articles/fork-a-repo |
|
|
[golint]: https://github.com/golang/lint |
|
|
[golint]: https://github.com/golang/lint |
|
|
|
|
|
[golint readme]: https://github.com/golang/lint/blob/master/README |
|
|
[gocov]: https://github.com/axw/gocov |
|
|
[gocov]: https://github.com/axw/gocov |
|
|
[gocov-html]: https://github.com/matm/gocov-html |
|
|
[gocov-html]: https://github.com/matm/gocov-html |
|
|
[well-formed commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html |
|
|
[well-formed commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html |
|
|
|