Hash : 9ba49bb5 Author : Date : 2011-06-23T03:04:23
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#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