mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-02 13:32:14 +00:00

These allow you to implement git-ls-remote when given a reference name and a repository. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
17 lines
256 B
C
17 lines
256 B
C
#ifndef INCLUDE_remote_h__
|
|
#define INCLUDE_remote_h__
|
|
|
|
#include "remote.h"
|
|
#include "refspec.h"
|
|
#include "transport.h"
|
|
|
|
struct git_remote {
|
|
char *name;
|
|
char *url;
|
|
struct git_refspec fetch;
|
|
struct git_refspec push;
|
|
git_transport *transport;
|
|
};
|
|
|
|
#endif
|