I'm working together with a college of mine in git.
I'm working on a branch, and he's working on the master.
I've done some work related to his files on my branch, and I decided to send him a patch file.
I created the patch with git format-patch, and sent it to him.
when he tries to apply the patch using git am he get's the following message: previous release directory
It's probably because the patch arrived from a different branch.
Is there a way for him to use the patch on the master branch ?
Note: I'm using git am, and not git apply to keep commit-id that is generated for jetty.
I still want the commiter to be me on his local repository.
