-
Notifications
You must be signed in to change notification settings - Fork 15
Development How To
bartaz edited this page Sep 13, 2010
·
20 revisions
This is a document for Taskboard developers that describes development practices. It’s intended to show how do we use Kanban methodology with Git repository.
- story branches – each story or issue should be developed in it’s own branch. This branch should remain local. If there is a need to share the changes with other developers patches should be used (or pulls between developers’ repositories)
-
dev– development branch is intended for code that is still in progress (not yet checked by Product Owner). If the implementation of story/issue is completed it’s branch should be merged dodevbranch. -
done– this should store only fully completed stories/issues. The stories/issues that where indevbranch and where successfully checked by Product Owner should be merged todonebranch. -
master– we usemasterbranch as a release branch – we merge thedevbranch tomasterwhen we do a release