April 2011
nvie/gitflow - GitHub
(via)A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
A successful Git branching model ยป nvie.com
by 7 othersA very well explained and detailed workflow for branching with git.
October 2010
nvie's gitflow at develop - GitHub
(via)A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
August 2010
The Perfect Git Workflow for a One Person Project // Kyle Slattery
A git workflow when working alone on a project. Interesting use of git rebase to prevent merge conflicts. This workflow is intended for one person: rebasing on a branch is messy if someone else has a copy of it.
Using Git Branches as Patches // Kyle Slattery
Use git branches as patches: if you have a master and a dev branches, create a new X branch from master (the prod branch), commit, merge into dev with the --no-ff option, and when if it works as expected, merge the X branch into the master.
Using Git to maintain your blog | Mate-driven development
(via)Basic workflow for maintaining a blog using Git: a local repository, a remote repository (and a bare) and some hooks to sync the repos and generate the blog.
April 2010
Git Submodules: What is the Ideal Workflow? | End Point Blog
by 1 other (via)Workflow for the git submodules.
1
(7 marks)