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
Merge #750: faq: Replace outdated contributing guideline with link
149be13 faq: Replace outdated contributing guideline with link (MarcoFalke)
Pull request description:
The page was created by copy-pasting the `CONTRIBUTING.md` from 2016, which is outdated in some parts by now. I don't see any value in hosting this specific old version of `CONTRIBUTING.md`, so just remove it.
List of what changed upstream:
https://github.com/bitcoin/bitcoin/commits/1e72b68ab330c72644981508c8a1b3fa670d086f/CONTRIBUTING.md
ACKs for top commit:
harding:
ACK 149be13 Thanks!
fanquake:
ACK 149be13
Tree-SHA512: 0c271731a0b9adf4add91a5a19af4d60fd582b8e73dd09b2371a430ed29270cb5ce97c70c8e160bf7e3131b11c5820a7a327b4b8ede33621ae604b6b6281bfa6
Copy file name to clipboardExpand all lines: _posts/en/pages/faq/2016-02-15-contributing-core-guidelines.md
+7-116Lines changed: 7 additions & 116 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,121 +7,12 @@ layout: page
7
7
type: pages
8
8
lang: en
9
9
category: faqs
10
-
version: 2
10
+
version: 3
11
11
---
12
-
The Bitcoin Core project operates an open contributor model where anyone is welcome to contribute towards development in the form of peer review, testing and patches. This document explains the practical process and guidelines for contributing.
12
+
The Bitcoin Core project operates an open contributor model where anyone is
13
+
welcome to contribute towards development in the form of peer review, testing
14
+
and patches.
13
15
14
-
Firstly in terms of structure, there is no particular concept of “Core developers” in the sense of privileged people. Open source often naturally revolves around meritocracy where longer term contributors gain more trust from the developer community. However, some hierarchy is necessary for practical purposes. As such there are repository “maintainers” who are responsible for merging pull requests as well as a “lead maintainer” who is responsible for the release cycle, overall merging, moderation and appointment of maintainers.
15
-
16
-
Contributor Workflow
17
-
--------------------
18
-
19
-
The codebase is maintained using the “contributor workflow” where everyone without exception contributes patch proposals using “pull requests”. This facilitates social contribution, easy testing and peer review.
20
-
21
-
To contribute a patch, the workflow is as follows:
22
-
23
-
- Fork repository
24
-
- Create topic branch
25
-
- Commit patches
26
-
27
-
The project coding conventions in the [developer notes](https://github.com/bitcoin/bitcoin/blob/master/doc/developer-notes.md) must be adhered to.
28
-
29
-
In general [commits should be atomic](https://en.wikipedia.org/wiki/Atomic_commit#Atomic_commit_convention) and diffs should be easy to read. For this reason do not mix any formatting fixes or code moves with actual code changes.
30
-
31
-
Commit messages should be verbose by default consisting of a short subject line (50 chars max), a blank line and detailed explanatory text as separate paragraph(s); unless the title alone is self-explanatory (like "Corrected typo in main.cpp") then a single title line is sufficient. Commit messages should be helpful to people reading your code in the future, so explain the reasoning for your decisions. Further explanation [here](http://chris.beams.io/posts/git-commit/).
32
-
33
-
If a particular commit references another issue, please add the reference, for example `refs #1234`, or `fixes #4321`. Using the `fixes` or `closes` keywords will cause the corresponding issue to be closed when the pull request is merged.
34
-
35
-
Please refer to the [Git manual](https://git-scm.com/doc) for more information about Git.
36
-
37
-
- Push changes to your fork
38
-
- Create pull request
39
-
40
-
The title of the pull request should be prefixed by the component or area that the pull request affects. Examples:
41
-
42
-
Consensus: Add new opcode for BIP-XXXX OP_CHECKAWESOMESIG
43
-
Net: Automatically create hidden service, listen on Tor
44
-
Qt: Add feed bump button
45
-
Trivial: Fix typo in main.cpp
46
-
47
-
If a pull request is specifically not to be considered for merging (yet) please prefix the title with [WIP] or use [Tasks Lists](https://help.github.com/articles/basic-writing-and-formatting-syntax/#task-lists) in the body of the pull request to indicate tasks are pending.
48
-
49
-
The body of the pull request should contain enough description about what the patch does together with any justification/reasoning. You should include references to any discussions (for example other tickets or mailing list discussions).
50
-
51
-
At this stage one should expect comments and review from other contributors. You can add more commits to your pull request by committing them locally and pushing to your fork until you have satisfied all feedback.
52
-
53
-
Squashing Commits
54
-
-----------------
55
-
If your pull request is accepted for merging, you may be asked by a maintainer to squash and or [rebase](https://git-scm.com/docs/git-rebase) your commits before it will be merged. The basic squashing workflow is shown below.
56
-
57
-
git checkout your_branch_name
58
-
git rebase -i HEAD~n
59
-
# n is normally the number of commits in the pull
60
-
# set commits from 'pick' to 'squash', save and quit
61
-
# on the next screen, edit/refine commit messages
62
-
# save and quit
63
-
git push -f # (force push to GitHub)
64
-
65
-
The length of time required for peer review is unpredictable and will vary from pull request to pull request.
66
-
67
-
68
-
Pull Request Philosophy
69
-
-----------------------
70
-
71
-
Patchsets should always be focused. For example, a pull request could add a feature, fix a bug, or refactor code; but not a mixture. Please also avoid super pull requests which attempt to do too much, are overly large, or overly complex as this makes review difficult.
72
-
73
-
### Features
74
-
75
-
When adding a new feature, thought must be given to the long term technical debt and maintenance that feature may require after inclusion. Before proposing a new feature that will require maintenance, please consider if you are willing to maintain it (including bug fixing). If features get orphaned with no maintainer in the future, they may be removed by the Repository Maintainer.
76
-
77
-
### Refactoring
78
-
79
-
Refactoring is a necessary part of any software project's evolution. The following guidelines cover refactoring pull requests for the project.
80
-
81
-
There are three categories of refactoring, code only moves, code style fixes, code refactoring. In general refactoring pull requests should not mix these three kinds of activity in order to make refactoring pull requests easy to review and uncontroversial. In all cases, refactoring PRs must not change the behaviour of code within the pull request (bugs must be preserved as is).
82
-
83
-
Project maintainers aim for a quick turnaround on refactoring pull requests, so where possible keep them short, uncomplex and easy to verify.
84
-
85
-
86
-
"Decision Making" Process
87
-
-------------------------
88
-
89
-
The following applies to code changes to the Bitcoin Core project (and related projects such as libsecp256k1), and is not to be confused with overall Bitcoin Network Protocol consensus changes.
90
-
91
-
Whether a pull request is merged into Bitcoin Core rests with the project merge maintainers and ultimately the project lead.
92
-
93
-
Maintainers will take into consideration if a patch is in line with the general principles of the project; meets the minimum standards for inclusion; and will judge the general consensus of contributors.
94
-
95
-
In general, all pull requests must:
96
-
97
-
- have a clear use case, fix a demonstrable bug or serve the greater good of the project (for example refactoring for modularisation);
98
-
- be well peer reviewed;
99
-
- have unit tests and functional tests where appropriate;
100
-
- follow code style guidelines;
101
-
- not break the existing test suite;
102
-
- where bugs are fixed, where possible, there should be unit tests demonstrating the bug and also proving the fix. This helps prevent regression.
103
-
104
-
Patches that change Bitcoin consensus rules are considerably more involved than normal because they affect the entire ecosystem and so must be preceded by extensive mailing list discussions and have a numbered BIP. While each case will be different, one should be prepared to expend more time and effort than for other kinds of patches because of increased peer review and consensus building requirements.
105
-
106
-
### Peer Review
107
-
108
-
Anyone may participate in peer review which is expressed by comments in the pull request. Typically reviewers will review the code for obvious errors, as well as test out the patch set and opine on the technical merits of the patch. Project maintainers take into account the peer review when determining if there is consensus to merge a pull request (remember that discussions may have been spread out over github, mailing list and IRC discussions). The following language is used within pull-request comments:
109
-
110
-
- ACK means "I have tested the code and I agree it should be merged";
111
-
- NACK means "I disagree this should be merged", and must be accompanied by sound technical justification. NACKs without accompanying reasoning may be disregarded;
112
-
- utACK means "I have not tested the code, but I have reviewed it and it looks OK, I agree it can be merged";
113
-
- Concept ACK means "I agree in the general principle of this pull request";
114
-
- Nit refers to trivial, often non-blocking issues.
115
-
116
-
Reviewers should include the commit hash which they reviewed in their comments.
117
-
118
-
Project maintainers reserve the right to weigh the opinions of peer reviewers using common sense judgement and also may weight based on meritocracy: Those that have demonstrated a deeper commitment and understanding towards the project (over time) or have clear domain expertise may naturally have more weight, as one would expect in all walks of life.
119
-
120
-
Where a patch set affects consensus critical code, the bar will be set much higher in terms of discussion and peer review requirements, keeping in mind that mistakes could be very costly to the wider community. This includes refactoring of consensus critical code.
121
-
122
-
Where a patch set proposes to change the Bitcoin consensus, it must have been discussed extensively on the mailing list and IRC, be accompanied by a widely discussed BIP and have a generally widely perceived technical consensus of being a worthwhile change based on the judgement of the maintainers.
123
-
124
-
Release Policy
125
-
--------------
126
-
127
-
The project leader is the release manager for each Bitcoin Core release.
16
+
Please refer to the [contribution
17
+
guide](https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md) in the
0 commit comments