-
Notifications
You must be signed in to change notification settings - Fork 34
Git work flow on the project
Ilya Murzinov edited this page Jul 15, 2015
·
2 revisions
WAIL app uses basic Git Flow
You can read this article about Git Flow
Main things:
- MERGE --NO-FF please, of course you can do rebase inside of your local branches, but when you merging your work with others, please use MERGE --NO-FF
- Main branch — master, Google Play releases goes from this branch
- If you want to work on particular issue, create branch from master branch named "issue-21" where "21" is number of issue from Issues list
- When you finished work on some issue, create pull request, we all will check it and merge if everything is okay :)
Also, check out git commits style guides!