Reputation: 43578
I'm Contributing in the development of an open source which use git as repository.
And after finishing my modification I make git commit -a
in order to commit locally
And then I enter my comment in the comment field of git commit -a
window
And then If I send the patch with git send-email
I get the whole message in the subject of the email.
And I want to enter in the git commit -a
window both the subject and the email core separetly
How to do it ?
Upvotes: 1
Views: 69
Reputation: 1328292
You need to put a blank line between:
git send-email
.Upvotes: 3