Sha256: 60bd78963a5a7a97065686dd1c86bc6d34b4781dcdd2f4fc9f1914e38da7c39f
Contents?: true
Size: 545 Bytes
Versions: 2
Compression:
Stored size: 545 Bytes
Contents
/* * Copyright (C) 2009-2012 the libgit2 contributors * * This file is part of libgit2, distributed under the GNU GPL v2 with * a Linking Exception. For full terms see the included COPYING file. */ #ifndef INCLUDE_remote_h__ #define INCLUDE_remote_h__ #include "refspec.h" #include "transport.h" #include "repository.h" struct git_remote { char *name; char *url; git_vector refs; struct git_refspec fetch; struct git_refspec push; git_transport *transport; git_repository *repo; unsigned int need_pack:1, check_cert; }; #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rugged-0.17.0b2 | ext/rugged/vendor/libgit2-dist/src/remote.h |
rugged-0.17.0b1 | ext/rugged/vendor/libgit2-dist/src/remote.h |