aboutsummaryrefslogtreecommitdiffstats
path: root/doc/branches.md
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-07-27 21:57:21 +0300
committerRiku Isokoski <riksu9000@gmail.com>2021-07-27 21:57:21 +0300
commita0a05553cf16787a01de5e1d023cb0445169109a (patch)
tree923cde30df149565249f6f644dcb1589b2a32d44 /doc/branches.md
parentb5eabf6604734e40caa4a3ccbbd8aa9e9dfa7ced (diff)
parent514481ef7f9c71ad816b31d979c6ab39ce9380dd (diff)
Merge branch 'develop' into fix_adc
Diffstat (limited to 'doc/branches.md')
-rw-r--r--doc/branches.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/branches.md b/doc/branches.md
index 0fb8316d..ef280f40 100644
--- a/doc/branches.md
+++ b/doc/branches.md
@@ -2,7 +2,7 @@
The branching model of this project is based on the workflow named [Git flow](https://nvie.com/posts/a-successful-git-branching-model/).
It is based on 2 main branches:
- - **master** : this branch is always ready to be reployed. It means that at any time, we should be able to build the branch and release a new version of the application.
+ - **master** : this branch is always ready to be deployed. It means that at any time, we should be able to build the branch and release a new version of the application.
- **develop** : this branch contains the latest development that will be integrated in the next release once it's considered as stable.
New features should be implemented in **feature branches** created from **develop**. When the feature is ready, a pull-request is created and it'll be merge into **develop** when it is succesfully reviewed and accepted.