Skip to content

Commit b3bde88

Browse files
committed
CONTRIBUTING: Remove branch-naming suggestions
Extending the earlier softening in 0548361 (CONTRIBUTING: Make leader-issues optional, 2016-05-19, opencontainers#6), because nobody cares about the XXX- prefix. Checking the recent history of all OCI project repos: $ for REPO in image-spec image-tools runc runtime-spec runtime-tools; > do > ( > cd "${REPO} && > git fetch origin && > BRANCHES=$(git log --first-parent --oneline origin/master | sed 's/^.* from //') && > echo "${REPO} branches: $(echo "${BRANCHES}" | wc -l)" && > echo "${REPO} numbered: $(echo "${BRANCHES}" | grep '/[0-9]' | wc -l)" > ); > done image-spec branches: 276 image-spec numbered: 1 image-tools branches: 27 image-tools numbered: 0 runc branches: 1299 runc numbered: 21 runtime-spec branches: 391 runtime-spec numbered: 4 runtime-tools branches: 232 runtime-tools numbered: 3 Signed-off-by: W. Trevor King <[email protected]>
1 parent 9f95b15 commit b3bde88

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,9 @@ incorporating a new feature.
2424

2525
### Conventions
2626

27-
Fork the repo and make changes on your fork in a feature branch:
28-
29-
- If it's a bugfix branch, name it XXX-something where XXX is the number of the
30-
issue
31-
- If it's a feature branch, create an enhancement issue to announce your
32-
intentions, and name it XXX-something where XXX is the number of the issue.
33-
34-
Small changes or changes that have been discussed on the project mailing list
35-
may be submitted without a leader issue, in which case you are free to name
36-
your branch however you like.
27+
Fork the repo and make changes on your fork in a feature branch.
28+
For larger bugs and enhancements, consider filing a leader issue or mailing-list thread for discussion that is independent of the implementation.
29+
Small changes or changes that have been discussed on the project mailing list may be submitted without a leader issue.
3730

3831
If the project has a test suite, submit unit tests for your changes. Take a
3932
look at existing tests for inspiration. Run the full test suite on your branch

0 commit comments

Comments
 (0)