git2.h 967 Bytes
Newer Older
1
/*
schu committed
2
 * Copyright (C) 2009-2012 the libgit2 contributors
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/version.h"
12

13
#include "git2/common.h"
14
#include "git2/threads.h"
15
#include "git2/errors.h"
16

17
#include "git2/types.h"
18

19
#include "git2/oid.h"
20
#include "git2/signature.h"
21
#include "git2/odb.h"
22

23 24
#include "git2/repository.h"
#include "git2/revwalk.h"
25
#include "git2/merge.h"
26
#include "git2/refs.h"
27
#include "git2/reflog.h"
28

29 30 31 32 33
#include "git2/object.h"
#include "git2/blob.h"
#include "git2/commit.h"
#include "git2/tag.h"
#include "git2/tree.h"
34
#include "git2/diff.h"
35

36
#include "git2/index.h"
37
#include "git2/config.h"
38
#include "git2/remote.h"
39

Carlos Martín Nieto committed
40
#include "git2/refspec.h"
41
#include "git2/net.h"
42
#include "git2/status.h"
43
#include "git2/indexer.h"
44
#include "git2/submodule.h"
schu committed
45 46
#include "git2/notes.h"

47
#endif