Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-07-21 22:18:57 +0400
committerJunio C Hamano <gitster@pobox.com>2014-07-21 22:18:57 +0400
commit528396a463e4030e19f150e8fddd8d911063e77e (patch)
tree5eac35b8c38fb8c12007ee3c88d37aedd21dfcf3 /refs.c
parentfb0166c674efbc940ac14453129ab81823badf3d (diff)
parente7e0f26eb64de205acaac63da89f47aab78ba229 (diff)
Merge branch 'rs/unify-is-branch'
* rs/unify-is-branch: refs.c: add a public is_branch function
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/refs.c b/refs.c
index dc761599fd..3792314f3b 100644
--- a/refs.c
+++ b/refs.c
@@ -3074,7 +3074,7 @@ static int log_ref_write(const char *refname, const unsigned char *old_sha1,
return 0;
}
-static int is_branch(const char *refname)
+int is_branch(const char *refname)
{
return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
}