diff --git a/git.go b/git.go index 6a261c9ba692e4c142da307503d2d4cca0feb06e..cc0ef53a89dd78923776e9c5246d33b9dc8fb658 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) {