Other features
• git blame
(who changed what and why)
• git bisect
(find exactly where something
broke)
• .gitignore
(uploads, config, backup)
• git submobules
(inculdes other git repo's in yours)
Slide 21
Slide 21 text
Git flow
• Branching workflow
• Built into SourceTree & Tower
Branch model
• master/develop
• features (starts from develop)
• releases (merges develop into
master)
• hotfix (starts from master)
Slide 22
Slide 22 text
git push > deploy
• Know when your changes are live
• Roll back when something breaks
• Everyone can deploy
• NO MORE FTP