Page 1 of 1
Default GIT branch
Posted: May 12th, 2016, 4:31 pm
by cyberk
Hello,
Out of curiosity, why is the default branch at GIT the dev branch, and not the master branch?
Better question, will running the following command get me the latest stable version, or the latest development version?
git clone git://github.com/sabnzbd/sabnzbd.git
Re: Default GIT branch
Posted: May 12th, 2016, 4:41 pm
by shypike
We follow git-flow a bit, except merging to Master.
The stable release is now based on branch "1.0.x".
The actual development on branch "develop", which is also the default branch.
Re: Default GIT branch
Posted: May 12th, 2016, 4:49 pm
by cyberk
Thanks, I think I understand
If I want to clone the latest stable, I should clone the 1.0.x branch,
git clone -b 1.0.x --single-branch
https://github.com/sabnzbd/sabnzbd.git
Re: Default GIT branch
Posted: May 13th, 2016, 1:52 am
by shypike
For now , yes.
Until we move to 1.1.x
Re: Default GIT branch
Posted: May 31st, 2016, 5:21 pm
by chese80
What is the Feature/cherrypy branch?
Re: Default GIT branch
Posted: June 1st, 2016, 1:53 am
by shypike
We sometimes develop new features on a separate branch.
This one is now obsolete and will be deleted at some time.