diff options
| author | Calin Seciu <[email protected]> | 2015-07-31 10:07:26 +0200 |
|---|---|---|
| committer | Calin Seciu <[email protected]> | 2015-07-31 10:07:26 +0200 |
| commit | 6c4af98c5b2763b020e39357f31bcc6d6f1960e1 (patch) | |
| tree | 889936ea3d4f3e101aadc20ae016612d752cebc9 /wrapper.c | |
| parent | 12311c8528c577ebb11006f24c026c7a4d2f2de3 (diff) | |
Add more support for tags
Implement support for the following libgit2 functions:
- 'git_tag_list' and 'git_tag_list_match'
- 'git_tag_foreach'
- 'git_tag_create_lightweight'
Diffstat (limited to 'wrapper.c')
| -rw-r--r-- | wrapper.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 */ |
