Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-03-27 02:24:02 +0300
committerlovetox <philipp@hoerist.com>2022-03-27 02:24:02 +0300
commit0bd5425432b19d92bfcf9ec9635ce08c87577e39 (patch)
treee2fb5eaf6242b9ef0c8f1d1c41723efb45476adc /CONTRIBUTING.md
parent7db8a0800509002f35593a50dc02c3a6eb778799 (diff)
Update CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0bea5ebce..13f6f1acc 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,3 +1,4 @@
+# Project
If you want to create a fork and use an external account (Github, Google) drop us a message at the Gajim support [group chat](xmpp:gajim@conference.gajim.org?join) so we can give you the necessary rights
@@ -6,6 +7,24 @@ If you want to create a fork and use an external account (Github, Google) drop u
- gajim_1.0 - Stable Gajim 1.0.x branch
- gajim_0.16 - Stable Gajim 0.16.x branch
+
+# Commit Messages
+
If you are not familiar with Git please read the [HowTo](https://dev.gajim.org/gajim/gajim/wikis/development/howtogit)
A good article regarding [good commit messages](https://chris.beams.io/posts/git-commit/)
+
+Every commit message must be prefixed with one of the following tags:
+
+- feat
+- fix
+- perf
+- refactor
+- chore
+- other
+
+Further the first letter after the tag must be upper case
+
+Example:
+
+`feat: New Button which does something`