- Fork this repository: click the fork button in GitHub
- Clone your forked repository to your local: use
git clone <insert_repo_location>
in terminal
- Only create files in YOUR folder name.
- Complete homework in the correct sub-directory, e.g. week 1 homework for tuesday should be completed inside
./<your_name>/wk01/2-tue/
- In your local, add your files to staging and commit changes e.g.
git add -A
,git commit -m 'add method that alphabetizes strings in array'
- Push homework up from your local to your remote repository on Github e.g.
git push origin master
- Create a pull request to this github repository from your remote repository: Go to your remote repository and click
New pull request
. Confirm by clickingCreate pull request
.