mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-20 14:05:27 +01:00
Create CONTRIBUTING.md
This commit is contained in:
parent
e579cb4685
commit
568ac3f4a1
1 changed files with 11 additions and 0 deletions
11
CONTRIBUTING.md
Normal file
11
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
All commits should have one of the following prefixes: REL, FIX, ADD, TST, OPS, DOC. For example `"ADD: new feature"`.
|
||||
|
||||
Commits should be atomic: one commit - one feature, one commit - one bugfix etc.
|
||||
|
||||
When you tag a new release, use the following example:
|
||||
`git tag -m "REL v1.4.0: 157c9c2" v1.4.0`
|
||||
You may get the commit hash from git log. Don't forget to push tags `git push origin --tags`
|
||||
|
||||
When tagging a new release, make sure to increment version in package.json and other files (we have a script for that: `./edit-version-number.sh`)
|
||||
In the commit where you up version you can have the commit message as
|
||||
`"REL vX.X.X: Summary message"`.
|
Loading…
Add table
Reference in a new issue