mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
e2770979fe
If you access repositories over smart-http using http authentication, then it can be annoying to have git ask you for your password repeatedly. We cache credentials in memory, of course, but git is composed of many small programs. Having to input your password for each one can be frustrating. This patch introduces a credential helper that will cache passwords in memory for a short period of time. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
158 B
C
7 lines
158 B
C
#ifndef UNIX_SOCKET_H
|
|
#define UNIX_SOCKET_H
|
|
|
|
int unix_stream_connect(const char *path);
|
|
int unix_stream_listen(const char *path);
|
|
|
|
#endif /* UNIX_SOCKET_H */
|