git-send-email - Send a collection of patches as emails https://git-scm.com/docs/git-send-email
Questions tagged [git-send-email]
25 questions
2
votes
2 answers
How can we sanely verify git send-email configuration settings?
Using git 2.5.
Is there a clever, or official, way to verify that git send-email is able to connect to, and authenticate with, my smtp server? I've configured git, but I don't seem to be able to successfully use git send-email.
When I execute git…

ybakos
- 8,152
- 7
- 46
- 74
2
votes
3 answers
Send patches against first email through git send-email
I am currently working on a small assignment from an extra course in college. The task is to write a small program that does some work x, and a Makefile for it. We are to send the two files as a plain text email to our lecturer. We are then required…

Rahul Raghunath
- 175
- 1
- 4
- 15
1
vote
1 answer
Unable to send email using git send-email
I am not able to send patches using git send-email.
This is my .gitconfig file
[user]
email = my-email
name = my-name
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = my-email
smtpserverport = 587
…

Madhuparna Bhowmik
- 2,090
- 4
- 12
- 22
1
vote
0 answers
"git send-email" in post-commit hook doesn't work with Github Desktop
Description
Hi, i would like to know if it's possible to not use git include in github desktop.
I explain :
In my project i have a hook in post-commit which send me mail with the command
git send-email
When i commit with command line it works…

Sylvain Berthelot
- 141
- 7
1
vote
0 answers
how to add colour diff in git send-email
I am using git send-email command, but the diff patch is not colored.
If I try git send-email -1 --color it send ANSI colour code in email and unformatted text.
I want to be able to mail color diff patch.

Ciasto piekarz
- 7,853
- 18
- 101
- 197
0
votes
1 answer
How to correctly use git send-email with GitLab?
I am going to be managing a repository hosted in gitlab soon.
So far I have been a contributor to other repos and usually what I did was to create my own branch locally, work on that and then push my work to have a merge-request that the repo…

KansaiRobot
- 7,564
- 11
- 71
- 150
0
votes
1 answer
Why is git send-email reporting "died" after successful authentication?
Using git 2.5.
When I use git send-email to send a patch, I'm seeing the following error output:
Died at /usr/libexec/git-core/git-send-email line 1348.
Here's the output of git send-email --smtp-debug=1 -1.
Send this email?…

ybakos
- 8,152
- 7
- 46
- 74
0
votes
1 answer
Git patch create and send it to an email
I just created a patch using the following command git format-patch master --stdout > raj_powar.patch
In order to send the 'raj_powar.patch', i ran the following command git send-email --subject="stringval" --to="address" raj_powar.patch
But i keep…

RRP
- 2,563
- 6
- 29
- 52
-1
votes
1 answer
git send-email --in-reply-to failed
I encounterd the error as below. Can anyone help with this?
git send-email --in-reply-to=CANn89iJCDYteM_1SQ-h2=htUAE4FqrBAak0kHt_Z990XYZThzQ@mail.gmail.com --to=edumazet@google.com --cc=davem@davemlof
t.net --cc=dhowells@redhat.com …

邢庆杰
- 19
- 2
-2
votes
2 answers
How can I parse emails from git send-email?
Does anyone know of a system or library that can parse emails sent by git send-email? So ideally receive emails and automatically create branches or PRs?

parsley72
- 8,449
- 8
- 65
- 98