From cf133b4484f9f002d72969cc816e7a4ca30791c3 Mon Sep 17 00:00:00 2001 From: Guille Polito Date: Mon, 11 Jun 2018 11:47:48 +0200 Subject: [PATCH] Implement tag deletion --- .../LGitRepository.class/instance/git_tag_delete..st | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 LibGit-Core.package/LGitRepository.class/instance/git_tag_delete..st 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