1
0
Fork 0
forked from forgejo/forgejo
This commit is contained in:
Unknown 2014-04-13 04:08:25 -04:00
parent 9d983f27d6
commit d26a333dfb
3 changed files with 12 additions and 7 deletions

View file

@ -134,6 +134,10 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s%s/%s.git", base.AppUrl, user.LowerName, repo.LowerName)
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
if ctx.Repo.Repository.IsGoget {
ctx.Data["GoGetLink"] = strings.TrimSuffix(ctx.Repo.CloneLink.HTTPS, ".git")
}
// when repo is bare, not valid branch
if !ctx.Repo.Repository.IsBare && validBranch {
detect: