Branching
Create a Branch
git branch CoolNewThing
Switch to a branch
git checkout CoolNewThing
Delete a Branch
git branch –D CoolNewThing
Slide 11
Slide 11 text
See your changes
git status
git log
Slide 12
Slide 12 text
Tutorials
Try Git
http://try.github.com/
How to Use Git and GitHub
https://www.udacity.com/course/how-to-use-git-and-github--ud775
Pro Git
http://git-scm.com/book
Slide 13
Slide 13 text
Resources
Git cheat sheet
https://git.wiki.kernel.org/index.php/GitCheatSheet
A successful Git branching model
http://nvie.com/posts/a-successful-git-branching-model/