- Fork this repo
- Clone the forked github repo [git clone 'THE REPO URL']
- Copy the github repo into a 'dev' branch [git checkout -b dev]
- You should complete all work in the 'dev' branch
- Checkout the respective branch for the individual exercise [git checkout step02]
- (If the above does not work) Ensure that the cloned repo has gathered all remote branches [git fetch]
- Switch to the 'dev' brach [git checkout dev]
- Merge the 'step02' branch into 'dev' branch [git merge step02]
- Continue working on the solution on the 'dev' branch
After ensuring that your code fulfills the requirements of each exercise, you must submit the answer via a pull request as follows:
- Commit the necessary changes to the 'dev' branch [git add . && git commit -m "Answer to step02 (Shannon Clarke)"]
- Checkout a new branch with a name respective to the exercise number [git checkout -b answer02]
- Push all changes to the forked repo [git push -u origin answer02]
- Visit the github page of your forked repo and click on 'New Pull Request' then follow the instructions to create a pull request