Let's say I've created a patch from 6 commits in app A & I want to apply this patch in app B.
If I try and apply the patch, git wil complain because the naming is different or the files do not exist yet.
Is it possible to apply a patch and
- create files by applying the patch? Or can you only update existing files?
- have the possibility to merge before finally applying the patch because the naming is different or you want to add some more code?
The issue I'm trying to solve is copy some code from app B to app A. I can't merge because I only want one feature (several commits) build into A. Is this possible with git?