We'll use GitHub

Ensure your team is registered!

  1. Set Up Git

  2. Initialize your team's repository by:

    • Creating a new repository:

        echo "# <REPOSITORY_NAME>" >> README.md
        git init
        git add README.md
        git commit -m "first commit"
        git remote add origin git@github.com:hacktheweather/<REPOSITORY_NAME>.git
        git push -u origin master
      
    • Or push an existing one:

        git remote add origin git@github.com:hacktheweather/<REPOSITORY_NAME>.git
        git push -u origin master
      
  3. Download your team's notebooks from DSW (.ipynb) to your machine.

  4. Commit and push notebooks and sample data to GitHub.