is there any command to get email send to / from and date from the git patch file or do I have to read it from the parsing the patch file ?
How can I fetch header info from git patch using python?
321 Views Asked by Ciasto piekarz At
2
There are 2 best solutions below
0

Parsing should be involved, since this git apply
wouldn't help:
git apply --summary
As you can see in any of the t/t4100
/t-apply-*.expect files, there is no mention of date or emails.
That being said, since git format-patch
produced Unix mailbox format, you can use tools lie mailutils to parse such a file in C.
Or (easier), with a perl script.
while (($line = <F>)) {
# set variables in order
chomp($line);
if ($line =~ /^From /){
$count++;
}
elsif ($line =~ /^Date:/){
($date_text,$date) = split(/:/,$line);
}
elsif ($line =~ /^From:/){
($from_text,$from) = split(/:/,$line);
}
elsif ($line =~ /^Subject:/){
($subject_text,$subject) = split(/:/,$line);
}
The formail command (often distributed with procmail, I think) can be useful for extracting email headers:
One difference compared to ad-hoc parsing with e.g. sed or the short Perl script posted in VonC's answer is that it deals with line-wrapped header lines.
This should be unusual for Date, From, and To lines but is common for Subject lines.
Another corner case that not even formail deals with is header fields encoded according to RFC 2047, which is necessary if the line contains anything but plain US-ASCII.
I suggest you use whatever email/MIME parsing library that's available for the language you use. Since you mention Python in the question title, here's a short Python example for reading a file created by
git format-patch
from stdin and printing some of its headers: