mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-28 08:10:44 +00:00
15 lines
206 B
C
15 lines
206 B
C
#ifndef INCLUDE_remote_h__
|
|
#define INCLUDE_remote_h__
|
|
|
|
#include "remote.h"
|
|
#include "refspec.h"
|
|
|
|
struct git_remote {
|
|
char *name;
|
|
char *url;
|
|
struct git_refspec fetch;
|
|
struct git_refspec push;
|
|
};
|
|
|
|
#endif
|