summaryrefslogtreecommitdiff
path: root/src/libgit2/branch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgit2/branch.h')
-rw-r--r--src/libgit2/branch.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/libgit2/branch.h b/src/libgit2/branch.h
new file mode 100644
index 000000000..b4db42a01
--- /dev/null
+++ b/src/libgit2/branch.h
@@ -0,0 +1,31 @@
+/*
+ * 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_branch_h__
+#define INCLUDE_branch_h__
+
+#include "common.h"
+
+#include "str.h"
+
+int git_branch__remote_name(
+ git_str *out,
+ git_repository *repo,
+ const char *refname);
+int git_branch__upstream_remote(
+ git_str *out,
+ git_repository *repo,
+ const char *refname);
+int git_branch__upstream_merge(
+ git_str *out,
+ git_repository *repo,
+ const char *refname);
+int git_branch__upstream_name(
+ git_str *tracking_name,
+ git_repository *repo,
+ const char *canonical_branch_name);
+
+#endif