BitShares Forum

Main => General Discussion => Topic started by: xeroc on May 07, 2014, 11:15:38 am

Title: A successful Git branching model
Post by: xeroc on May 07, 2014, 11:15:38 am
Just found this on the web:
http://nvie.com/posts/a-successful-git-branching-model/

I describes a useful model on how to use branches efficiently with git. All you developers should read and consider it. I think the development can gain from it.
Title: Re: A successful Git branching model
Post by: HackFisher on May 07, 2014, 01:23:57 pm
 +5%

I think I'm working on the lotto feature branch, and be used to create seperate branches for bugfix then pull request to master. Then the merge of bugfix will not influence feature development.
Title: Re: A successful Git branching model
Post by: xeroc on May 07, 2014, 02:12:54 pm
I think I'm working on the lotto feature branch, and be used to create seperate branches for bugfix then pull request to master. Then the merge of bugfix will not influence feature development.
I think thats the whole point of this model!