I've just done the following thing with Git but I am not sure if it's the right way of doing things. What I have is a file that has some stuff. Then there is a branch that adds extra stuff to this file (extends it, it's a plugin we sell separately). Let's say branch1 and branch2 have a file with the following content:
-----------
branch1
-----------
123
-----------
branch2
-----------
123
qwe
-----------
Then I did some work on a major feature in branch1 and made a commit to that branch. After that I merged branch1 into branch2 to re-apply this new feature to the plugin version of the file as well. Now the files are
-----------
branch1
-----------
1234
-----------
branch2
-----------
1234
qwe
-----------
But the code doesn't completely work and I now need to switch to branch2 and do some changes to the code that extends the file there (change "qwe" to "qwer"). However while working I am also finding some mistakes in the base code ("1234") and fix them (change "1234" to "12345"). Now my working directory with the HEAD being in branch2 has the following
-----------
branch2 (working directory)
-----------
12345
qwer
-----------
Now I need to commit this, the result I am aiming for is
-----------
branch1
-----------
12345
-----------
branch2
-----------
12345
qwer
-----------
I fear that if I just commit this to branch2 and then will separately reapply the 1234->12345 change to branch1 and commit that too, this will yield the results I am looking for but Git will recognize this as two separate and fully independent commits and when I'll be going through a similar process in future (e.g. 12345->123456 in branch1 and then branch1->branch2 merge), I'll get a conflict in that place. So my solution is to use interactive staging to commit only qwe->qwer change to branch2. Then stash the remaining changes (otherwise it won't allow to switch back to branch1), switch to the other branch, apply stash, commit 1234->12345 to branch1 and finally merge branch1->branch2.
That did the trick however since I am relatively new to Git I am not very sure if I am using things right and in the best possible way. Please let me know if the above makes sense and if it doesn't please tell me a better way of doing that.