So, I have 3 branches;
develop - my branch of continuing developmentversion_1 - branch of liberationversion_2 - branch of liberation
I had to make a fix on version_2to reinstall this version, it was a 2-line change in 2 files, very small.
I wanted to apply this fix to version_1and develop.
So me;
git checkout version_1
git merge <commit checksum>
I thought that commit only contains changes, so only those apply. But the merge conflicts because it tries to update all the changes between the two branches.
Is there a way to merge / move / apply ONLY changes in a small commit to other branches?
, , , , .
Cheers, Will