Ruby Morning Challenges Instructions Fork and clone Create a link to this repo: git remote add upstream https://github.com/gj-ca/ruby-pull-down.git For each challenge (in your fork): Checkout the branch (in your fork) git checkout -b <challenge_branch> Pull down the challenge: git pull 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