|
| 1 | +/* |
| 2 | + * This file is free software; you can redistribute it and/or modify |
| 3 | + * it under the terms of the GNU General Public License, version 2, |
| 4 | + * as published by the Free Software Foundation. |
| 5 | + * |
| 6 | + * In addition to the permissions in the GNU General Public License, |
| 7 | + * the authors give you unlimited permission to link the compiled |
| 8 | + * version of this file into combinations with other programs, |
| 9 | + * and to distribute those combinations without any restriction |
| 10 | + * coming from the use of this file. (The General Public License |
| 11 | + * restrictions do apply in other respects; for example, they cover |
| 12 | + * modification of the file, and distribution when not linked into |
| 13 | + * a combined executable.) |
| 14 | + * |
| 15 | + * This file is distributed in the hope that it will be useful, but |
| 16 | + * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | + * General Public License for more details. |
| 19 | + * |
| 20 | + * You should have received a copy of the GNU General Public License |
| 21 | + * along with this program; see the file COPYING. If not, write to |
| 22 | + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, |
| 23 | + * Boston, MA 02110-1301, USA. |
| 24 | + */ |
1 | 25 | #ifndef INCLUDE_git_remote_h__
|
2 | 26 | #define INCLUDE_git_remote_h__
|
3 | 27 |
|
|
13 | 37 | * - _del (needs support from config)
|
14 | 38 | */
|
15 | 39 |
|
| 40 | +/** |
| 41 | + * @file git2/remote.h |
| 42 | + * @brief Git remote management |
| 43 | + * @defgroup git_remote Git remote management routines |
| 44 | + * @ingroup Git |
| 45 | + * @{ |
| 46 | + */ |
| 47 | +GIT_BEGIN_DECL |
| 48 | + |
16 | 49 | /**
|
17 | 50 | * Get the information for a particular remote
|
18 | 51 | *
|
@@ -84,4 +117,6 @@ GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headarray *refs);
|
84 | 117 | */
|
85 | 118 | GIT_EXTERN(void) git_remote_free(struct git_remote *remote);
|
86 | 119 |
|
| 120 | +GIT_END_DECL |
| 121 | + |
87 | 122 | #endif
|
0 commit comments