Sunday, March 2, 2014

Good reading on Git

http://betterexplained.com/articles/aha-moments-when-learning-git/

http://www.youtube.com/watch?v=B78AdLNZBQQ

Git leaves branch organization to you. Nvie.com has a great branch strategy:
  • Have a mainline (master). Mentally it’s on the far right.
  • Create branches (master -> dev) and subbranches (dev -> featureX). The further from master, the crazier.
  • Only merge with neighbors (master -> dev -> feature X, or featureX -> dev -> master)

No comments: