* [PATCH 2/2] Created a faux remote to pass to http_init. This allows http_push to authenticate http through a prompt.
@ 2009-03-18 23:46 Amos King
0 siblings, 0 replies; only message in thread
From: Amos King @ 2009-03-18 23:46 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
This patch allows http_push to use http authentication via prompts.
You may notice that there is a remote struct that only contains the
url from the repo struct. This struct is a temporary fix for a larger
issue, but gets http authentication via prompts out the door, and
keeps users from having to store passwords in plain text files.
Signed-off-by: Amos King <amos.l.king@gmail.com>
---
http-push.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/http-push.c b/http-push.c
index 9ac2664..885378b 100644
--- a/http-push.c
+++ b/http-push.c
@@ -2195,7 +2195,14 @@ int main(int argc, char **argv)
memset(remote_dir_exists, -1, 256);
- http_init(NULL);
+ //This is a faked remote so that http_init can get the correct data for
+ //builidng out athorization.
+ struct remote *remote;
+ remote = xcalloc(sizeof(*remote), 1);
+ ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
+ remote->url[remote->url_nr++] = repo->url;
+
+ http_init(remote);
no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
--
1.6.2.GIT
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-18 23:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-18 23:46 [PATCH 2/2] Created a faux remote to pass to http_init. This allows http_push to authenticate http through a prompt Amos King
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).