We'll use GitHub to submit and review Cognitive Builder Faire projects.

Ensure your team is registered! When you register your team, you will receive a repository name to use as follows.

  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/cognitivebuilder/<REPOSITORY_NAME>.git
        git push -u origin master
      
    • Or push an existing one:

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

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