Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.14 KB

File metadata and controls

37 lines (26 loc) · 1.14 KB

Student Notebook Assignment Workflow

  1. Go to the github repo link
  2. Press 'fork' to create a copy on your own github account:

fork

  1. Copy the clone URL of your own copy - it should include your github username

clone url

  1. Log in to Jupyter and open a new terminal (New -> Terminal). Run:
git clone <the url you copied>
cd <name of repo>

(to copy into a Jupyter notebook use SHIFT+CTRL+V)

  1. Complete the assignment. Make sure you save your changes!
  2. Commit and push your files:
git add --all
git commit -m 'your commit message'
git push
  1. On your fork of the repo on github, press the 'new pull request', then the 'create pull request' button

new pr create pr

  1. Submit your pull request to complete the assignment! Make sure to set the title of the PR to your name - lastname firstname:

pr dialogue

  1. Your code will be tested automatically, and once it's done will show either a green tick or red cross

travis test