Fix correct upstream remote HTTPS URL (#12436)

pull/12438/head^2
Lauris BH 4 years ago committed by GitHub
parent 2872a04f27
commit 42a31c797b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      contrib/pr/checkout.go

@ -198,7 +198,9 @@ func main() {
} }
remoteUpstream := "origin" //Default remoteUpstream := "origin" //Default
for _, r := range remotes { for _, r := range remotes {
if r.Config().URLs[0] == "https://github.com/go-gitea/gitea" || r.Config().URLs[0] == "git@github.com:go-gitea/gitea.git" { //fetch at index 0 if r.Config().URLs[0] == "https://github.com/go-gitea/gitea.git" ||
r.Config().URLs[0] == "https://github.com/go-gitea/gitea" ||
r.Config().URLs[0] == "git@github.com:go-gitea/gitea.git" { //fetch at index 0
remoteUpstream = r.Config().Name remoteUpstream = r.Config().Name
break break
} }

Loading…
Cancel
Save