Hi,
I am currently working on a project that has two phases, one of which is to be dropped later on. Development for phase 2 must begin, but bug-fixes for phase 1 will be on-going during this time. I want to branch from the phase 1 repo to start on phase 2 work, but many of the files will no longer be needed. I need to integrate any changes made into the phase 2 branch, but i dont want the hassle of repeatedly removing files that are no longer relevant to me, in otherwords i only want to merge changes where we have files in common.
Let me illustrate with an example, lets say i have my phase 1 work in this repo:
Phase1 - a.txt - b.txt
I then branch to phase 2, and remove a.txt as i will not need it further:
Phase2 - b.txt
Now lets say as part of phase1 bug fixes, both a.txt and b.txt are updated. I only care about b.txt, but if i do a merge i get: +N a.txt.OTHER M b.txt
Is there a way to do this with bazaar?