26 August 2010 12:15
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.
1
(1 marks)