$ git clone https://github.com/your-username/scipy-tutorial-2014.git
To create a branch
$ git checkout -b my-working-branch
Remember that this creates a branch from whatever branch is currently checked out. It's typically best to branch from master only, unless there's a reason to branch from an existing branch.
git add -u # stages all changed files, including deleted files
git commit -m "Briefly describe your changes" # Try for 50 characters or less
$ git log master..
$ git diff master...
$ git push origin my-working-branch
When you're ready, create a pull request on GitHub to merge your work.
If your pull request was not from a fork, the changes you made will be available on the master branch.
$ git pull origin master
$ git log master
$ git log master --first-parent
If your pull request was from a fork, you'll need to pull changes from the upstream repository to get your changes in master.
$ git remote -v # list remotes
$ git remote add upstream https://github.com/reproducible-research/scipy-tutorial-2014
$ git remote -v # should now see your new upstream remote
To update your fork from the upstream
$ git fetch upstream
$ git rebase upstream/master
Then, to get those changes back up into your fork on GitHub
$ git push origin master