- Fork and clone
- Create a link to this repo:
git remote add upstream https://github.com/CoderAcademy-BRI/js-challenges
- For each challenge (in your fork):
- Checkout the branch (in your fork)
git checkout -b <challenge_branch>
- Pull down the challenge:
git pull --no-edit upstream <challenge_branch>
- Complete the challenge
- Checkout master branch and merge challenge branch:
git checkout master && git merge <challenge_branch>
- Push to master in your fork:
git push origin master
- Checkout the branch (in your fork)