-
Notifications
You must be signed in to change notification settings - Fork 447
SourceCodeGit_WorkFlow
Vitalii Koshura edited this page Apr 11, 2023
·
2 revisions
- Improve stability of both the server and client software.
- Lay the foundation for feature branches should we ever decide to use them.
master = development (currently trunk)
server_stable
client_release_major_minor = release major.minor
copy trunk to master
copy server_stable to server_stable
create client_release_X_X as needed
Developers can create feature branches or separate server and client branches in their local repositories.
All new code goes into master.
Hot fixes get merged into server_stable and/or client_release_X_X if needed.