In [24]:
!git fetch upstream
In [25]:
!git merge upstream/master master
In [38]:
branch_name = "test-feature"
In [27]:
%%bash
git branch $branch_name upstream/master
git checkout $branch_name
# git push --set-upstream origin
# git push --set-upstream your-github-username my-new-feature
In [29]:
!git status
In [16]:
!git add ../data/*
In [17]:
!git status
In [35]:
!git add *
!git status
In [36]:
!git commit -am "Update github-integration -2"
In [37]:
!git push origin $branch_name
In [34]:
!git checkout master
If this is your first time running this code, this is the section for you!
In [22]:
github_username = "FILL IN YOUR GITHUB USERNAME HERE"
In [ ]:
%%bash
git clone git@github.com:/$github_username/jupyter-best-practices.git
cd jupyter-best-practices
git remote add upstream git://github.com/jbwhit/jupyter-best-practices.git