git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 3/3] fallback SSH_ASKPASS when GIT_ASKPASS not set
@ 2010-03-02 11:52 Frank Li
  0 siblings, 0 replies; only message in thread
From: Frank Li @ 2010-03-02 11:52 UTC (permalink / raw)
  To: git; +Cc: gitster, Frank Li

If GIT_ASKPASS is not set and SSH_ASKPASS set, GIT_ASKPASS will
use SSH_ASKPASS.

Signed-off-by: Frank Li <lznuaa@gmail.com>
---
 git.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/git.c b/git.c
index 90c6daf..f09948e 100644
--- a/git.c
+++ b/git.c
@@ -54,6 +54,9 @@ 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] != '-')
-- 
1.7.0.86.g45191

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-03-02 11:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-02 11:52 [PATCH v3 3/3] fallback SSH_ASKPASS when GIT_ASKPASS not set Frank Li

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).