Git branching
1. Overview
-
Commits and Parents

-
Branch and History

2. Create branch
$ git branch testing
Two branches pointing into the same series of commits

3. Switching Branches
$ git checkout testing

Checkout master

New commit on master

$ git log --oneline --graph --all
$ git checkout -b testing-2