The scenarios is as following. I will use t1,t2,t3 and etc. to represent different time:
I have two branches to represent my environments DEV branch, MASTER branch.
t1: I created a Feature_001 branch from MASTER
t2: I added commits in the Feature_001 branch and merged my code into DEV and pushed it.
t3: for some reason, my manager told me to stop the development of the Feature_001 branch
t4: One month passed. My colleague Clair created a Feature_002 branch from MASTER.
t5: Clair added commits in the Feature_002 branch and attempted to merge her code into DEV branch and pushed it. However, a conflict shows up when she pushed.
t6: Clair then pulled and merged the changes from the DEV branch into her Feature_002 branch (my problem happens in this moment). She made a new commit to solve the conflict in the Feature_002 branch. After that, Clair merged her code into DEV and pushed.
t7: After testing, Clair's manager says it's OK to merge into MASTER branch now. So, Clair merged the Feature_002 branch into the MASTER branch.
t8: Although the Feature_002 Clair developed is functioning in the production, the Feature_001 unintentionally shows up in the production, too, because the Feature_002 branch once merged code from DEV to itself to solve conflicts. Our manager was shocked and started to question who dared to let the Feature_001 go out to production!?
t9: meeting and meeting forever to discuss what happened ...
If you follow well on the scenario, you can find because of the conflicts between feature branches, Feature_002 branch will include changes in the Feature_001 branch after Clair pulled the code from DEV.
My question is how to keep two feature branches independently while enabling us to solve conflicts between them?
Any feedback and discussion is much appreciated.
EDIT 20180925:
I want to adjust the situation a bit. Feature_001 branch can be unwanted or just be under development for a long time. Let's make it be under development for a long time while Feature_002 was tested first and merged into MASTER real quick. However, now, again, MASTER branch have both Feature_001 and Feature_002 changes there when we don't want Feature_001 to be in production.
The branch Feature_001 shouldn't have merged to DEV until Feature_001 was completed and pull request approved. The conflicts will have to be resolved once Feature_001 is merged into DEV not before, this will avoid the problem you encountered, where Feature_002 branch had some commited code from Feature_001. Ideally the Feature_001 should either be small or broken down into smaller features such as Feature-001-S-xxxxxx-MyStoryDescription for easy tracking. Additionally, since your branch Feature-001 might have many commits, it is recommended to squash your commits before doing pull request and rebase your branch when a merge conflicts occurs. Happy coding!