Hash : 9c82357b Author : Date : 2011-06-17T18:13:14
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#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