In [1]:
from IPython.display import Image
Image(url='http://www.phdcomics.com/comics/archive/phd101212s.gif')
Out[1]:
If that hasn't convinced you, here are some other benefits:
http://stackoverflow.com/questions/1408450/why-should-i-use-version-control
Replace 'code' in the first answer with 'essay', 'thesis', 'homework' -- all stuff that a version control system such as git and GitHub can help you with!
http://nyuccl.org/pages/GitTutorial/
Go through the tutorial. You can either follow along from the terminal in the command line, or from within this very notebook using the %%bash magic:
In [1]:
%%bash
git status
Starting a codeblock in the notebook environment with the magic phrase %%bash allows you to run terminal commands from within a notebook (more on that in the next section!)
by Fernando Perez: http://nbviewer.ipython.org/github/fperez/reprosw/blob/master/Version%20Control.ipynb
by Software Carpentry: http://software-carpentry.org/v5/novice/git/index.html
In [ ]: