DO NOT FORK this repo.
I repeat DO NOT FORK this repo
-
CLONE this repository from your personal Github account:
- Copy the HTTPS or SSH address on the page.
- From you DevLeague folder, run the command
$ git clone [SSH or HTTP address]
in your terminal in order to clone this repository into that folder (you don't need to type the "$"; this is the command prompt, and is used to signify your terminal is ready for commands).
-
From your terminal, navigate into the the assignment:
$ cd cohort29_vc
-
Create a new branch for the project:
$ git branch your-branch-name
or$ git checkout -b your-branch-name
-
To see which mission you've been assigned to, you must get the updates from the master file.
$ git fetch
$ git pull
-
Checkout into your own branch and MERGE the updates from the master branch into your newly created branch:
$ git merge master
Work on your respective mission in the mission.js
file
-
Test your work. Commit and push your code when complete.
-
Make a pull request.