Practical Data Science (PDS) 2019/2020, University of Wuerzburg
Deadline 12.11.2019, 10am
Note: Make sure that you are logged in with your Google Account; Link Google Colab with your Github account to access private repositories.
- Create a branch assignment_x
- Click on Branch: master and create branch assignment_x
- Open Assingment Notebook on Google Colab
- Select the Github tab and tick Include private repos
- Search for "pds1920" and select your repository and branch
- Work on the assignment and push changes to branch assignment_x
- Click File -> Save a copy on Github
- Check Include a link to Colaboratory
- Send a Pull Request to merge your final notebook with master
- Clone repository
git clone <url to repository>
# e.g.
git clone https://github.com/wi3jmu/PDS1920_A0.git
- Change working directory
cd <folder name>
- Create a branch "assignment_x"
git checkout -b assignment_x
- Work on the assignment and push changes to branch, e.g.
git add <notebook name>
git commit -m 'Assingment complete'
git push origin assignment_x
- Send a Pull Request to merge your final notebook with master