Skip to content
shinkiro1 edited this page Mar 7, 2013 · 6 revisions

Code version control implemented with git. If you didn’t use this version control system earlier, we recommend to read the documentation.
The basic workflow is as following:

  • Clone/Pull the repository. Don't forget to switch to the right branch!
  • Make your changes
  • Commit
  • Push

Branches

The main repository must necessarily contain two branches - master and develop.

  • master — in this branch there is a stable and well-tested code
  • develop — in this branch there are recently made changes expecting for review and inclusion to the main branch

In addition to these two branches, repositories can optionally contain other necessary for the development and temporary branches

Tags

The main repository - pub must necessarily contain version tags. Stable version of the collection is marked with tag. The tag name represents the following: v{major}.{minor}.{maintenance}.

Clone this wiki locally