From 33c8319f38f7d9a5a27ab8ff5ceacfb5191674b0 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 24 Sep 2023 17:02:00 -0400 Subject: [PATCH] comment out listRemoteTags --- git.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/git.go b/git.go index 6a261c9..cc0ef53 100644 --- a/git.go +++ b/git.go @@ -16,11 +16,11 @@ import ( ) // listRemoteTags lists all tags in a remote repository, whether HTTP(S) or SSH. -func listRemoteTags(url string) (tags []string, err error) { - // TODO: Implement listRemoteTags - // https://pkg.go.dev/github.com/go-git/go-git/v5@v5.8.0#NewRemote - return nil, nil -} +// func listRemoteTags(url string) (tags []string, err error) { +// // TODO: Implement listRemoteTags +// // https://pkg.go.dev/github.com/go-git/go-git/v5@v5.8.0#NewRemote +// return nil, nil +// } // fetchReleases fetches all releases in a remote repository, whether HTTP(S) or SSH. func getGitReleases(p project) (project, error) {