* [PATCH] git-send-email: allow an email alias for --from
@ 2007-07-05 1:11 Michael Hendricks
2007-07-06 5:43 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Michael Hendricks @ 2007-07-05 1:11 UTC (permalink / raw)
To: git; +Cc: Michael Hendricks
Signed-off-by: Michael Hendricks <michael@ndrix.org>
---
I don't like seeing all the output and confirming the From address
when I don't specify --from. Since I have aliases for my own email
addresses, this is easier than always typing out the full address.
It also does what I would expect since every other email address can
be specified as an alias. Why not From also?
git-send-email.perl | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/git-send-email.perl b/git-send-email.perl
index 87f59fa..89f7c36 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -254,6 +254,8 @@ if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
}
}
+($from) = expand_aliases($from) if defined $from;
+
my $prompting = 0;
if (!defined $from) {
$from = $author || $committer;
--
1.5.3.rc0.14.gebe8f
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-07-06 5:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-05 1:11 [PATCH] git-send-email: allow an email alias for --from Michael Hendricks
2007-07-06 5:43 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).