aboutsummaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorBenoit Sigoure <tsuna@lrde.epita.fr>2007-11-08 19:56:28 +0100
committerJunio C Hamano <gitster@pobox.com>2007-11-09 00:00:09 -0800
commitcb6c162fba3fe3e1333b48c6062c18108c41fb82 (patch)
tree4d493cf173ed68e086be8e5d66fb5c0e734b6762 /git-send-email.perl
parent13d4e6f7b7a95ae0a41f72317c9844739dcfb6f2 (diff)
downloadgit-cb6c162fba3fe3e1333b48c6062c18108c41fb82.tar.gz
git-cb6c162fba3fe3e1333b48c6062c18108c41fb82.tar.xz
git-send-email: Change the prompt for the subject of the initial message.
I never understood what this prompt was asking for until I read the actual source code. I think this wording is much more understandable. Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index 9547cc37a..8760cf88a 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -303,7 +303,7 @@ sub expand_aliases {
if (!defined $initial_subject && $compose) {
do {
- $_ = $term->readline("What subject should the emails start with? ",
+ $_ = $term->readline("What subject should the initial email start with? ",
$initial_subject);
} while (!defined $_);
$initial_subject = $_;