You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,28 @@
2
2
3
3
## Sign the CLA
4
4
5
-
Kubernetes projects require that you sign a Contributor License Agreement (CLA) before we can accept your pull requests. Please see https://git.k8s.io/community/CLA.md for more info
5
+
Kubernetes projects require that you sign a Contributor License Agreement (CLA) before we can accept your pull requests.
6
+
7
+
Please see https://git.k8s.io/community/CLA.md for more info
6
8
7
-
###Contributing A Patch
9
+
## Contributing steps
8
10
9
11
1. Submit an issue describing your proposed change to the repo in question.
10
12
1. The [repo owners](OWNERS) will respond to your issue promptly.
11
13
1. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
12
14
1. Fork the desired repo, develop and test your code changes.
13
15
1. Submit a pull request.
16
+
17
+
## Test locally
18
+
19
+
1. Setup tools
20
+
```bash
21
+
$ go get -u github.com/golang/dep/cmd/dep
22
+
$ go get -u gopkg.in/alecthomas/gometalinter.v2
23
+
$ gometalinter.v2 --install # if can't load package, refer: https://github.com/alecthomas/gometalinter/issues/404
0 commit comments