A stream for each developer?
Hello,
Is there any technical/logical justification for creating a stream for each developer? This is a large project made up of about 8 teams, with 6 to 8 developers on each team. Currently, there is only a stream for each team, and then a main release stream. For uncontrollable reasons, the code cannot be componentized so on a daily basis, teams are constantly stepping over each other with code changes. Team 1 will make a change on class ABC and team 2 will make another change on the same class and this happens across teams and classes all day long. Resulting in a nightmare for code merging and accepting changes from release back down to each team. The school of thought is that each developer would have their own stream so, they would resolved defects locally before pushing changes to the main release stream.
Would a stream for each developer compound problems, or increase issues (e.g. gap conflicts), or would this be an amazing model for a large project?
2 answers
Each developer should not have their own stream, but should have their own repository workspace.
Comments
Thank you for the answer. I truly wish it were possible to fix the code but unfortunately it's not. It's technically, logistically and cost prohibitive. Yes, agreed that long term costs would outweigh but the domain knowledge is missing which makes it logistically impossible so the cost is justified, with understanding that it will take years of maintenance in order to compartmentalize business logic.
I'm hoping the correct decision is made by leadership and the proper phased version control model is chosen.
Comments
Eric B
Feb 27 '20, 8:54 a.m.Need to revisit this question...
I'm looking for the technical reasons as to why a personal stream should NOT be used and only personal workspaces should be used. For example-
1) Using personal streams in a project will ____________.
Geoffrey Clemm
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Feb 27 '20, 10:05 p.m.Not allow the user to use any of the IDE's (such as Eclipse or Visual studio), since they require the user to have a repository workspace (you cannot load a personal stream into a sandbox .. you can only load a repository workspace). Also, if you cannot resolve any conflicts with personal streams, since conflicts can only be resolved in a repository workspace.