summaryrefslogtreecommitdiff
path: root/wrapper.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2015-07-31 20:24:18 +0200
committerCarlos Martín Nieto <[email protected]>2015-07-31 20:24:18 +0200
commitc0c6caed3a9564602af1f1881933229f99f4729f (patch)
tree8ef9d2c2c6628d0dbfc8b26f7407c18c7aaf869c /wrapper.c
parenta2e4e9259be7fcd4019e85accc7f25f130c27d3c (diff)
parentdef4494b74ec1c8fd12669e3f65bd29d6315c83c (diff)
Merge branch 'tags-col' into next
Diffstat (limited to 'wrapper.c')
-rw-r--r--wrapper.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/wrapper.c b/wrapper.c
index 75cc03c..1efe5d7 100644
--- a/wrapper.c
+++ b/wrapper.c
@@ -131,4 +131,9 @@ int _go_git_index_remove_all(git_index *index, const git_strarray *pathspec, voi
return git_index_remove_all(index, pathspec, cb, callback);
}
+int _go_git_tag_foreach(git_repository *repo, void *payload)
+{
+ return git_tag_foreach(repo, (git_tag_foreach_cb)&gitTagForeachCb, payload);
+}
+
/* EOF */