summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorLibravatar Knut Franke <k.franke@science-computing.de>2010-08-30 15:39:38 +0200
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-08-31 10:49:17 -0700
commit90e87b017f93fc606e2d6956766b32e56b4a9a2e (patch)
tree8e2354192958d13e376a56a575db5f9f198b45be /git.c
parentAdd a new option 'core.askpass'. (diff)
downloadtgif-90e87b017f93fc606e2d6956766b32e56b4a9a2e.tar.xz
Allow core.askpass to override SSH_ASKPASS.
Modify handling of the 'core.askpass' option so that it has the same effect as GIT_ASKPASS also if SSH_ASKPASS is set. Signed-off-by: Knut Franke <k.franke@science-computing.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r--git.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/git.c b/git.c
index 17538117a5..19a93fb9a2 100644
--- a/git.c
+++ b/git.c
@@ -55,9 +55,6 @@ static int handle_options(const char ***argv, int *argc, int *envchanged)
{
int handled = 0;
- if (!getenv("GIT_ASKPASS") && getenv("SSH_ASKPASS"))
- setenv("GIT_ASKPASS", getenv("SSH_ASKPASS"), 1);
-
while (*argc > 0) {
const char *cmd = (*argv)[0];
if (cmd[0] != '-')