/swb-app

Primary LanguageJavaScript

swb-app

Git Workflow

For working with feature branches

  1. YOu select an issue from github, lets say “Button Component” and ensure it's in the "In Progress" column of its respective project
  2. You should checkout the develop branch running git checkout develop
  3. You should then pull the latest from the remote develop branch with git pull origin develop
  4. Now that your development branch is up to date, you want to create you feature branch using git checkout -b nameOfFeature-YOURINITIALS
  5. Once you have completed coding the feature, you should pull develop into your feature branch to ensure you have the latest version git pull origin develop
  6. Now you are ready to push your code git push origin nameOfFeature-YOURINITIALS
  7. Once your feature has been approved, and you are ready to move onto the next feature, you should repeat everything in this check list, starting with step 1