Page 1 of 1

No more master?

Posted: Mon Nov 16, 2015 9:41 pm
by sahar
Just to make sure, https://github.com/L2J/L2J_Server/commits/master has moved to https://github.com/L2J/L2J_Server/commits permamently? (same for dp...)

Re: No more master?

Posted: Tue Nov 17, 2015 12:06 am
by maneco2
sahar wrote:Just to make sure, https://github.com/L2J/L2J_Server/commits/master has moved to https://github.com/L2J/L2J_Server/commits permamently? (same for dp...)
Now HighFive is: develop Branch

Re: No more master?

Posted: Tue Nov 17, 2015 5:53 am
by Zoey76
master has last release and develop has merged features.

Re: No more master?

Posted: Tue Nov 17, 2015 6:32 pm
by JMD
So in a way the "Master" branch is like the old "Stable" and Develop is the work in progress stuff (old "BETA")?

Re: No more master?

Posted: Tue Nov 17, 2015 9:11 pm
by Aikimaniac
Master is last cumulative release, but that does not mean its stable...

Re: No more master?

Posted: Thu Dec 17, 2015 10:39 pm
by CostyKiller
How can we switch from master branch to develop branch without losing the changes we made to our local source?
It's possible with rebase command?

Re: No more master?

Posted: Fri Dec 18, 2015 9:16 pm
by Sacrifice
Simply make a pull request from your repository and branch using l2jserver develop branch.

Re: No more master?

Posted: Fri Dec 18, 2015 9:41 pm
by UnAfraid
You can merge develop branch into your current one, get git repo view expand it and u'll see 'branches' expand it select origin/develop and right click merge will merge all commits into your current you may have to fix some conflicts in case there are

Re: No more master?

Posted: Fri Dec 18, 2015 10:15 pm
by CostyKiller
Thanks UnAfraid, it worked fine, I had some conflicts but I fixed them easily.