I have two people
- Bob, which continues developing with its team on a project
- Alice, which is now on holiday with her laptop far from Bob's office
Bob wants to send to Alice the diff of the master branch since Alice left.
I initially thought that
bob $ git format-patch --stdout e6def65..master > history.patch
alice $ git am history.patch
would preserve the commit hash, but it doesn't.
Is there a solution to easily exchange by e-mail a diff that preserves the commit SHA?