Instead of a single master
branch, this workflow uses two branches to record the history of the project. The master
branch stores the official release history, and the develop
branch serves as an integration branch for features.
We already have a master branch for both projects.
To create a develop
branch, which will only be done once by one of the team members, run:
git checkout -b develop
or
git branch develop