This is how I created a patch with the diffs I wanted to apply:
git diff HEAD branch-whose-changes-i-want-to-aply > /tmp/diff.patchAnd here is how to apply;
git apply /tmp/patch.diffResolving conflicts:
If it fails, you can run:
git am -3 < /tmp/patch.diffSource here.