]> git.proxmox.com Git - libgit2.git/blame - src/annotated_commit.h
push: remove own copy of callbacks
[libgit2.git] / src / annotated_commit.h
CommitLineData
18b00406
ET
1/*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7#ifndef INCLUDE_annotated_commit_h__
8#define INCLUDE_annotated_commit_h__
9
10#include "git2/oid.h"
11
12/** Internal structure for merge inputs */
13struct git_annotated_commit {
14 git_commit *commit;
15
16 char *ref_name;
17 char *remote_url;
18
19 char id_str[GIT_OID_HEXSZ+1];
20};
21
22#endif