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
+4-4
Original file line number
Diff line number
Diff line change
@@ -24,13 +24,13 @@ The following folders are automatically generated. You will need to submit a pat
24
24
-[kubernetes/test](kubernetes/test)
25
25
-[kubernetes/docs](kubernetes/docs).
26
26
27
-
These folders contain developer written codes in the main repo and the patches should be submitted here:
27
+
In this main repo, the following folders contain developer written codes and the patches should be submitted as pull requests here:
28
28
-[kubernetes/e2e_test](kubernetes/e2e_test)
29
29
-[kubernetes/utils](kubernetes/utils)
30
30
-[examples](examples)
31
31
-[scripts](scripts).
32
32
33
-
The base repo contains developer written codes only. The patches should be sent to the base repo instead. The scope covers these repos and symbolic links in the main repo:
33
+
The following folders and symbolic links in this main repo are in fact from the base repo. The base repo contains developer written codes only. The patches should be sent to the base repo instead:
34
34
- kubernetes/base
35
35
- kubernetes/config
36
36
- kubernetes/stream
@@ -50,7 +50,7 @@ If your patch depends on new packages, add those packages to [requirements.txt](
50
50
51
51
### Commits
52
52
53
-
Generally we would like to see one commit per pull request. However, if the pull request is reasonably large, the PR can be divided into several commits that make logical sense. The commit message should be clear and indicative of the aim of the fix.
53
+
Generally we would like to see one commit per pull request. However, if the pull request is reasonably large, the PR can be divided into several commits that make logical sense. The commit message should be clear and indicative of the aim of the fix. Sometimes multiple commits in a single pull request is acceptable if it meets the Kubernetes [pull request guidelines](https://github.com/kubernetes/community/blob/master/contributors/guide/pull-requests.md#6-squashing-and-commit-titles).
54
54
55
55
If you have several commits in a pull request and have been asked to squash your commits, please use ```git reset --soft HEAD~N_COMMITS``` and commit again to make your PR a single commit.
56
56
@@ -68,7 +68,7 @@ In addition to running the fix yourself and telling us that your fix works, you
68
68
69
69
### Coding Style
70
70
71
-
We use an automatic coding style checker by using the ```diff``` of the autopep8 output and your code file. To make sure that your code passes the coding style checker, run ```autopep8 --in-place --aggressive --aggressive your_code.py``` before committing and submission.
71
+
We use an automatic coding style checker by using the ```diff``` of the autopep8 output and your code file. To make sure that your code passes the coding style checker, run ```autopep8 --in-place --aggressive --aggressive your_code.py``` before committing and submitting.
0 commit comments