diff options
| author | nulltoken <emeric.fermas@gmail.com> | 2012-05-30 00:27:22 +0200 |
|---|---|---|
| committer | nulltoken <emeric.fermas@gmail.com> | 2012-05-30 01:05:17 +0200 |
| commit | d05e2c64dd93da7219c9ebca18c2f3b8478ca93a (patch) | |
| tree | dcb6e7f324084e08e812ce96272ee5985fe94514 /src/refspec.c | |
| parent | 1835c51f58a670e23c9546f942259d53fe626fa2 (diff) | |
| download | libgit2-d05e2c64dd93da7219c9ebca18c2f3b8478ca93a.tar.gz | |
refspec: expose the force update specifier through git_refspec_force() accessor
Diffstat (limited to 'src/refspec.c')
| -rw-r--r-- | src/refspec.c | 7 |
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) |
