I am working on verification software. I save the main branch code, which is always ready to run tests. Therefore, I am developing new functions in other industries (dev for ex). This is a classic git workflow.
My concern is that I need to switch betwen master and dev 10 times a day, because the designers are asking me to check for their updates.
At the moment I know only one way:
- Finish my work on dev with the message βregression requiredβ
- Switch to Lead Branch
- Run a regression and give feedback
- Go back to dev and keep working.
This is annoying due to the useless story created in dev branches.
Is there another simple way (I'm new) to avoid multiple commits in the dev branch?
Thank you for your help!
source
share