diff --git a/LibGit-Core.package/LGitRepository.class/instance/git_tag_delete..st b/LibGit-Core.package/LGitRepository.class/instance/git_tag_delete..st new file mode 100644 index 00000000..23177aae --- /dev/null +++ b/LibGit-Core.package/LGitRepository.class/instance/git_tag_delete..st @@ -0,0 +1,6 @@ +libgit-calls +git_tag_delete: aTagName + "int git_tag_delete(git_repository *repo, const char *tag_name);" + ^ self + call: #(LGitReturnCodeEnum git_tag_delete(self , String aTagName)) + options: #() \ No newline at end of file