diff options
author | Vicent Martà <tanoku@gmail.com> | 2011-07-28 05:23:27 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2011-07-28 05:23:27 -0700 |
commit | 2b7fffa892f89eb195125b9126f1e22fed15b83f (patch) | |
tree | 7cc5de096ae540e3f3753e0af208775f6636c1d3 /include/git2/remote.h | |
parent | 0b762f892ed6b66d881f6e4518bf3d0a7ebada6a (diff) | |
parent | 1e76676fb45a72211cfc6ffd579500b174e7202f (diff) | |
download | libgit2-2b7fffa892f89eb195125b9126f1e22fed15b83f.tar.gz |
Merge pull request #341 from carlosmn/development
Fixup network headers
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r-- | include/git2/remote.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h index 7775070d8..723ff8f0e 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -28,6 +28,14 @@ #include "git2/common.h" #include "git2/repository.h" #include "git2/refspec.h" +/** + * @file git2/remote.h + * @brief Git remote management functions + * @defgroup git_remote remote management functions + * @ingroup Git + * @{ + */ +GIT_BEGIN_DECL /* * TODO: This functions still need to be implemented: @@ -117,6 +125,6 @@ GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headarray *refs); */ GIT_EXTERN(void) git_remote_free(struct git_remote *remote); +/** @} */ GIT_END_DECL - #endif |