In lean software development extra features should be identified as
In a concurrent development environment, when a problem is identified in an earlier version (Version 1) that originated in a later version (Version 2), the appropriate action involves managing the code versions effectively. Branching the Version 2 codeline is the most appropriate first step because:
Isolation of Changes: Branching allows for the isolation of the problematic code in Version 2, enabling targeted fixes without affecting ongoing development in other versions.
Concurrent Development: This approach supports concurrent development activities, allowing different teams to work on fixing the issue in Version 2 while continuing development on other versions.
Currently there are no comments in this discussion, be the first to comment!