comment out listRemoteTags
This commit is contained in:
parent
887d89eacc
commit
33c8319f38
10
git.go
10
git.go
|
@ -16,11 +16,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// listRemoteTags lists all tags in a remote repository, whether HTTP(S) or SSH.
|
// listRemoteTags lists all tags in a remote repository, whether HTTP(S) or SSH.
|
||||||
func listRemoteTags(url string) (tags []string, err error) {
|
// func listRemoteTags(url string) (tags []string, err error) {
|
||||||
// TODO: Implement listRemoteTags
|
// // TODO: Implement listRemoteTags
|
||||||
// https://pkg.go.dev/github.com/go-git/go-git/v5@v5.8.0#NewRemote
|
// // https://pkg.go.dev/github.com/go-git/go-git/v5@v5.8.0#NewRemote
|
||||||
return nil, nil
|
// return nil, nil
|
||||||
}
|
// }
|
||||||
|
|
||||||
// fetchReleases fetches all releases in a remote repository, whether HTTP(S) or SSH.
|
// fetchReleases fetches all releases in a remote repository, whether HTTP(S) or SSH.
|
||||||
func getGitReleases(p project) (project, error) {
|
func getGitReleases(p project) (project, error) {
|
||||||
|
|
Loading…
Reference in New Issue