Upgrade to Pro — share decks privately, control downloads, hide ads and more …

git-branching

 git-branching

My 'Dev Time' chat about git branches and how git stores data

Avatar for Aaron Chambers

Aaron Chambers

August 29, 2014
Tweet

More Decks by Aaron Chambers

Other Decks in Programming

Transcript

  1. $ git add README.md test.rb LICENSE.md blob 96f690... #Testing Library

    This library is used to test stuff blob 5d6260... module Test module Tester end end blob 32413d... The MIT License
  2. $ git commit -m “Initial commit” blob 96f690... #Testing Library

    This library is used to test stuff blob 5d6260... module Test module Tester end end blob 32413d... The MIT License tree 83890b... blob 32413... LICENESE.md blob 5d626... test.rb blob 96f69... README.md commit 40b5bf... tree 83890b... author Aaron committer Aaron Initial commit
  3. C0 master testing HEAD C1 C2 C3 C4 C5 C6

    Common Ancestor Snapshot to merge Snapshot to merge
  4. topics for another day - squishing commits - git bisect

    - git workflows - cherry picking - remotes