This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
OpenI
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
#3521
fix wiki HTTP/S clone URL does not have .wiki suffix
tags/v1.2.0-rc1
Unknwon
8 years ago
parent
cd22b9177b
commit
7de31115f0
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
models/repo.go
+ 1
- 1
models/repo.go
View File
@@ -547,7 +547,7 @@ func (repo *Repository) cloneLink(isWiki bool) *CloneLink {
} else {
} else {
cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSH.Domain, repo.Owner.Name, repoName)
cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSH.Domain, repo.Owner.Name, repoName)
}
}
cl.HTTPS = ComposeHTTPSCloneURL(repo.Owner.Name, repo
.
Name)
cl.HTTPS = ComposeHTTPSCloneURL(repo.Owner.Name, repoName)
return cl
return cl
}
}
Write
Preview
Loading…
Cancel
Save