diff options
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 8b69e9d8e..4d9915b7a 100644 --- a/src/refspec.c +++ b/src/refspec.c @@ -236,3 +236,10 @@ int git_refspec__serialize(git_buf *out, const git_refspec *refspec) return git_buf_oom(out) == false; } + +int git_refspec_is_wildcard(const git_refspec *spec) +{ + assert(spec && spec->src); + + return (spec->src[strlen(spec->src) - 1] == '*'); +} |