git2.h 1.61 KB
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3
 *
Vicent Marti committed
4 5
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
6 7 8 9 10
 */

#ifndef INCLUDE_git_git_h__
#define INCLUDE_git_git_h__

11
#include "git2/annotated_commit.h"
12
#include "git2/attr.h"
13
#include "git2/blob.h"
14
#include "git2/blame.h"
15 16 17
#include "git2/branch.h"
#include "git2/buffer.h"
#include "git2/checkout.h"
18
#include "git2/cherrypick.h"
19
#include "git2/clone.h"
20
#include "git2/commit.h"
21
#include "git2/common.h"
22
#include "git2/config.h"
23
#include "git2/describe.h"
24 25 26
#include "git2/diff.h"
#include "git2/errors.h"
#include "git2/filter.h"
27
#include "git2/global.h"
28
#include "git2/graph.h"
29
#include "git2/ignore.h"
30
#include "git2/index.h"
31
#include "git2/indexer.h"
32
#include "git2/merge.h"
33
#include "git2/message.h"
34 35 36 37
#include "git2/net.h"
#include "git2/notes.h"
#include "git2/object.h"
#include "git2/odb.h"
38
#include "git2/odb_backend.h"
39
#include "git2/oid.h"
Michael Schubert committed
40
#include "git2/pack.h"
41
#include "git2/patch.h"
42
#include "git2/pathspec.h"
43
#include "git2/proxy.h"
44
#include "git2/rebase.h"
45 46 47 48 49 50 51
#include "git2/refdb.h"
#include "git2/reflog.h"
#include "git2/refs.h"
#include "git2/refspec.h"
#include "git2/remote.h"
#include "git2/repository.h"
#include "git2/reset.h"
52
#include "git2/revert.h"
53 54 55 56 57 58 59 60
#include "git2/revparse.h"
#include "git2/revwalk.h"
#include "git2/signature.h"
#include "git2/stash.h"
#include "git2/status.h"
#include "git2/submodule.h"
#include "git2/tag.h"
#include "git2/transport.h"
61
#include "git2/transaction.h"
62 63 64
#include "git2/tree.h"
#include "git2/types.h"
#include "git2/version.h"
65

66
#endif