mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-02 16:20:01 +00:00

1. The license header is technically not valid if it doesn't have a copyright signature. 2. The COPYING file has been updated with the different licenses used in the project. 3. The full GPLv2 header in each file annoys me.
48 lines
988 B
C
48 lines
988 B
C
/*
|
|
* Copyright (C) 2009-2011 the libgit2 contributors
|
|
*
|
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
|
* a Linking Exception. For full terms see the included COPYING file.
|
|
*/
|
|
|
|
#ifndef INCLUDE_git_git_h__
|
|
#define INCLUDE_git_git_h__
|
|
|
|
#define LIBGIT2_VERSION "0.14.0"
|
|
#define LIBGIT2_VER_MAJOR 0
|
|
#define LIBGIT2_VER_MINOR 14
|
|
#define LIBGIT2_VER_REVISION 0
|
|
|
|
#include "git2/common.h"
|
|
#include "git2/errors.h"
|
|
#include "git2/zlib.h"
|
|
|
|
#include "git2/types.h"
|
|
|
|
#include "git2/oid.h"
|
|
#include "git2/signature.h"
|
|
#include "git2/odb.h"
|
|
|
|
#include "git2/repository.h"
|
|
#include "git2/revwalk.h"
|
|
#include "git2/refs.h"
|
|
#include "git2/reflog.h"
|
|
|
|
#include "git2/object.h"
|
|
#include "git2/blob.h"
|
|
#include "git2/commit.h"
|
|
#include "git2/tag.h"
|
|
#include "git2/tree.h"
|
|
|
|
#include "git2/index.h"
|
|
#include "git2/config.h"
|
|
#include "git2/remote.h"
|
|
|
|
#include "git2/refspec.h"
|
|
#include "git2/net.h"
|
|
#include "git2/transport.h"
|
|
#include "git2/status.h"
|
|
#include "git2/indexer.h"
|
|
|
|
#endif
|