Sha256: 6bb1d7b467ffabe7cbcc73a316255c59a78ff37a68d9d4ce4226ac694ef9cdcb

Contents?: true

Size: 1.01 KB

Versions: 13

Compression:

Stored size: 1.01 KB

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * 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_commit_h__
#define INCLUDE_commit_h__

#include "common.h"

#include "git2/commit.h"
#include "tree.h"
#include "repository.h"
#include "array.h"

#include <time.h>

struct git_commit {
	git_object object;

	git_array_t(git_oid) parent_ids;
	git_oid tree_id;

	git_signature *author;
	git_signature *committer;

	char *message_encoding;
	char *raw_message;
	char *raw_header;

	char *summary;
	char *body;
};

void git_commit__free(void *commit);
int git_commit__parse(void *commit, git_odb_object *obj);
int git_commit__parse_raw(void *commit, const char *data, size_t size);

typedef enum {
	GIT_COMMIT_PARSE_QUICK = (1 << 0), /**< Only parse parents and committer info */
} git_commit__parse_flags;

int git_commit__parse_ext(git_commit *commit, git_odb_object *odb_obj, unsigned int flags);

#endif

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rugged-1.3.2.3 vendor/libgit2/src/commit.h
rugged-1.3.2.1 vendor/libgit2/src/commit.h
rugged-1.3.2 vendor/libgit2/src/commit.h
rugged-1.3.1 vendor/libgit2/src/commit.h
rugged-1.3.0 vendor/libgit2/src/commit.h
rugged-1.2.0 vendor/libgit2/src/commit.h
rugged-1.1.1 vendor/libgit2/src/commit.h
rugged-1.1.0 vendor/libgit2/src/commit.h
rugged-1.0.1 vendor/libgit2/src/commit.h
rugged-1.0.0 vendor/libgit2/src/commit.h
rugged-0.99.0 vendor/libgit2/src/commit.h
rugged-0.28.4 vendor/libgit2/src/commit.h
rugged-0.27.10 vendor/libgit2/src/commit.h