https://github.com/git/git
Revision faaafcd3f446874b4f6bf7bf5b4e2ee7101b2a82 authored by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC, committed by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC
"refs/" name space.

This happens implicitly in the files/packed ref backend; making it
explicit will simplify adding alternate ref storage backends.

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
1 parent 51ebf55
Raw File
Tip revision: faaafcd3f446874b4f6bf7bf5b4e2ee7101b2a82 authored by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC
Codify that for_each_rawref / for_each_ref should iterate over the
Tip revision: faaafcd
unix-socket.h
#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 */
back to top