summaryrefslogtreecommitdiff
path: root/doc/branches.md
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-07-25 19:30:27 +0300
committerRiku Isokoski <riksu9000@gmail.com>2021-07-25 19:30:27 +0300
commit2e8bc634dcae6e304b8f94e2633644fd55b64450 (patch)
tree7098aaa514c1f7600447235e21721319bcb33ae7 /doc/branches.md
parent12b14176ec965f2553e4cad16e291d54704128f3 (diff)
parent7b75ca591d31ccd8883a1a1ff83cfd271959dbaa (diff)
Merge branch 'develop' into fit_more_tasks
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.