I have a project where I made changes, and want to send them to another user, using git send-email feature.
I found that it works by sending patches (created by git format-patch
of each commit).
Is it able to send just diff
's ? I don't want to commit first, and then send the patch.
Does git format-patch
or maybe send-email
have some parameter to just do that quickly?
Thanks in advance.