diff options
author | Michal Nazarewicz <mina86@mina86.com> | 2013-02-12 15:02:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-27 09:46:03 -0800 |
commit | 4d31a44a08365b90ff28c5e87e187363e10c2a31 (patch) | |
tree | 7ed23829112cd1e52afd793e0d8b87f896b89eee /Documentation/git-send-email.txt | |
parent | Git.pm: add interface for git credential command (diff) | |
download | tgif-4d31a44a08365b90ff28c5e87e187363e10c2a31.tar.xz |
git-send-email: use git credential to obtain password
If smtp_user is provided but smtp_pass is not, instead of
prompting for password, make git-send-email use git
credential command instead.
Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-send-email.txt')
-rw-r--r-- | Documentation/git-send-email.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt index 44a1f7c4e8..0cffef8aa5 100644 --- a/Documentation/git-send-email.txt +++ b/Documentation/git-send-email.txt @@ -164,8 +164,8 @@ Sending Furthermore, passwords need not be specified in configuration files or on the command line. If a username has been specified (with '--smtp-user' or a 'sendemail.smtpuser'), but no password has been -specified (with '--smtp-pass' or 'sendemail.smtppass'), then the -user is prompted for a password while the input is masked for privacy. +specified (with '--smtp-pass' or 'sendemail.smtppass'), then +a password is obtained using 'git-credential'. --smtp-server=<host>:: If set, specifies the outgoing SMTP server to use (e.g. |