|
|
|
@ -382,9 +382,9 @@ func (repo *Repository) CloneLink() (cl CloneLink, err error) { |
|
|
|
|
if setting.SSHPort != 22 { |
|
|
|
|
cl.SSH = fmt.Sprintf("ssh://%s@%s:%d/%s/%s.git", setting.RunUser, setting.SSHDomain, setting.SSHPort, repo.Owner.LowerName, repo.LowerName) |
|
|
|
|
} else { |
|
|
|
|
cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSHDomain, repo.Owner.LowerName, repo.LowerName) |
|
|
|
|
cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSHDomain, repo.Owner.Name, repo.Name) |
|
|
|
|
} |
|
|
|
|
cl.HTTPS = fmt.Sprintf("%s%s/%s.git", setting.AppUrl, repo.Owner.LowerName, repo.LowerName) |
|
|
|
|
cl.HTTPS = fmt.Sprintf("%s%s/%s.git", setting.AppUrl, repo.Owner.Name, repo.Name) |
|
|
|
|
return cl, nil |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|