You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a newstable branch will have the same role as the old master branch
a newmain branch will have the same role as the old dev branch
the main branch will be the default repository branch
the dev- branches will contain big features to which multiple people can contribute at the same time, which means force pushes are not allowed to them
the wip- branches will be personal branches, they can be forced pushed so the single person working on the branch can push whatever they want there and not care about commit messages, their content etc. as long as the history is cleaned up before opening a pull request to one of the other branches
the fix- branches are for hot fixes and can only be based on main or stable branch
other branch prefixes will be considered on a case-by-case basis, for example diversity- for a feature mainly for a competition named Diversity
the master and dev branches shall remain frozen for the next 2 releases, in order to give time for everyone to update their local repositories and forks; after this period the branches will be deleted
Note: Besides settings on GitHub, scripts for CI and tools like release.py will also have to be updated.
The text was updated successfully, but these errors were encountered:
stable
branch will have the same role as the oldmaster
branchmain
branch will have the same role as the olddev
branchmain
branch will be the default repository branchdev-
branches will contain big features to which multiple people can contribute at the same time, which means force pushes are not allowed to themwip-
branches will be personal branches, they can be forced pushed so the single person working on the branch can push whatever they want there and not care about commit messages, their content etc. as long as the history is cleaned up before opening a pull request to one of the other branchesfix-
branches are for hot fixes and can only be based onmain
orstable
branchdiversity-
for a feature mainly for a competition named Diversitymaster
anddev
branches shall remain frozen for the next 2 releases, in order to give time for everyone to update their local repositories and forks; after this period the branches will be deletedNote: Besides settings on GitHub, scripts for CI and tools like
release.py
will also have to be updated.The text was updated successfully, but these errors were encountered: