September 2014
Intermediate to advanced
512 pages
12h 39m
English
A distributed version control system such as Git is designed for complex and nonlinear workflows typical in interactive computing and exploratory research. A central concept is branching, which we will discuss in this recipe.
You need to work in a local Git repository for this recipe (see the previous recipe, Learning the basics of the distributed version control system Git).
newidea:
$ git branch newidea
$ git checkout newidea
$ touch newfile.py
$ git add newfile.py $ git commit -m "Testing new idea."
Read now
Unlock full access