]> git.proxmox.com Git - libgit2.git/blame - src/merge.h
reset changes for merge
[libgit2.git] / src / merge.h
CommitLineData
632d8b23
ET
1/*
2 * Copyright (C) 2009-2012 the libgit2 contributors
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_merge_h__
8#define INCLUDE_merge_h__
9
10#include "git2/types.h"
11
12#define GIT_MERGE_MSG_FILE "MERGE_MSG"
13#define GIT_MERGE_MODE_FILE "MERGE_MODE"
14
15#define MERGE_CONFIG_FILE_MODE 0666
16
17int git_merge__cleanup(git_repository *repo);
18
19#endif