git2.h 1.43 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/attr.h"
12
#include "git2/blob.h"
13
#include "git2/blame.h"
14 15 16 17
#include "git2/branch.h"
#include "git2/buffer.h"
#include "git2/checkout.h"
#include "git2/clone.h"
18
#include "git2/commit.h"
19
#include "git2/common.h"
20
#include "git2/config.h"
21 22 23 24
#include "git2/diff.h"
#include "git2/errors.h"
#include "git2/filter.h"
#include "git2/graph.h"
25
#include "git2/ignore.h"
26
#include "git2/index.h"
27
#include "git2/indexer.h"
28
#include "git2/merge.h"
29
#include "git2/message.h"
30 31 32 33 34
#include "git2/net.h"
#include "git2/notes.h"
#include "git2/object.h"
#include "git2/odb.h"
#include "git2/oid.h"
Michael Schubert committed
35
#include "git2/pack.h"
36
#include "git2/patch.h"
37
#include "git2/pathspec.h"
38 39 40 41 42 43 44 45
#include "git2/push.h"
#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"
46
#include "git2/revert.h"
47 48 49 50 51 52 53 54 55 56 57 58
#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/threads.h"
#include "git2/transport.h"
#include "git2/tree.h"
#include "git2/types.h"
#include "git2/version.h"
59

60
#endif