Assessments for combined curriculum of 2018
- Visit the LEARN Github repo (LEARNAcademy/Assessments-2018)
- Click the "Fork" button on the top right (under the navbar)
- You will now find your own copy of the project saved under your repositories
git clone
your copy onto your machine
- Open the repo in atom on your computer
- Choose the week you want to work on and rename the file to your name (first and last) and the week number
git add .
andgit commit
your changes, do these steps as a way to "save" your progress- finally,
git push
your changes to Github
- Make sure you have pushed your local changes
- Go to your assessment repo on Github to check that the version there is what you want to submit
- Go to the LEARNAcademy/Assessments-2018 repo
- Click the "New Pull Request" button
- On the pull request page, find the link to "compare across forks" and click it
- You will see two forks - find the "head" fork dropdown (3rd from the left), find and select your repo
- Give your pull request a title and any notes, then click "Create"
** This is the process to pull changes from the origin repo to your branch:
- Copy the url for the LEARNAcademy assessments repo
- Make sure you are on branch master (
git checkout
into master on your machine) - Run
git remote add upstream https://github.com/LEARNAcademy/Assessments-2018.git
- Run
git pull upstream master
to get remote changes