libgit2/src/remote.h
Carlos Martín Nieto 9c82357be7 Add a remotes API
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
2011-06-26 18:18:10 +02:00

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