diff options
author | Jeff King <peff@peff.net> | 2011-12-10 05:40:54 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-12 16:09:38 -0800 |
commit | d3c58b83aee2007ca76dc5d1242c09b6f7989c76 (patch) | |
tree | 29e79755987e0670a8258992c3a5cd504a445f9e /cache.h | |
parent | 6c597aeba1e0fc369e64b1033515b0e39544cbe1 (diff) | |
download | git-d3c58b83aee2007ca76dc5d1242c09b6f7989c76.tar.gz |
move git_getpass to its own source file
This is currently in connect.c, but really has nothing to
do with the git protocol itself. Let's make a new source
file all about prompting the user, which will make it
cleaner to refactor.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1024,7 +1024,6 @@ struct ref { extern struct ref *find_ref_by_name(const struct ref *list, const char *name); #define CONNECT_VERBOSE (1u << 0) -extern char *git_getpass(const char *prompt); extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags); extern int finish_connect(struct child_process *conn); extern int git_connection_is_socket(struct child_process *conn); |