https://cal-compass.firebaseapp.com/
-
Pull changes from Master:
git pull origin master
-
Create branch:
git branch *branch_name*
-
Checkout branch:
git checkout *branch*
-
Make changes...
-
Commit changes to your branch:
git add
git commit -m 'Confirm my changes locally'
-
Push changes to your branch:
git push origin *branch_name*
-
Submit a pull request:
You should see a new button with the label “Compare & Pull Request”). Click on it. This will take the information from the Branch and will request a “Pull Request”
-
Mark the issue your request resolves (https://help.github.com/articles/closing-issues-via-commit-messages/)
-
Give it a label, assign your teammates to your pull request and wait for teammates to review.
-
Once your branch is deleted, merge it:
git branch -d *branch_name*