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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-05-30 02:27:22 +0400
committernulltoken <emeric.fermas@gmail.com>2012-05-30 03:05:17 +0400
commitd05e2c64dd93da7219c9ebca18c2f3b8478ca93a (patch)
treedcb6e7f324084e08e812ce96272ee5985fe94514 /src/refspec.c
parent1835c51f58a670e23c9546f942259d53fe626fa2 (diff)
refspec: expose the force update specifier through git_refspec_force() accessor
Diffstat (limited to 'src/refspec.c')
-rw-r--r--src/refspec.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/refspec.c b/src/refspec.c
index 697b1bf87..b6b1158b7 100644
--- a/src/refspec.c
+++ b/src/refspec.c
@@ -53,6 +53,13 @@ const char *git_refspec_dst(const git_refspec *refspec)
return refspec == NULL ? NULL : refspec->dst;
}
+int git_refspec_force(const git_refspec *refspec)
+{
+ assert(refspec);
+
+ return refspec->force;
+}
+
int git_refspec_src_matches(const git_refspec *refspec, const char *refname)
{
if (refspec == NULL || refspec->src == NULL)