mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fix wrong serve command log location and commit repo action
This commit is contained in:
		@@ -73,7 +73,7 @@ func RepoAssignment(redirect bool) martini.Handler {
 | 
			
		||||
		if base.EnableHttpsClone {
 | 
			
		||||
			scheme = "https"
 | 
			
		||||
		}
 | 
			
		||||
		ctx.Repo.CloneLink.SSH = fmt.Sprintf("git@%s:%s/%s.git", base.Domain, user.LowerName, repo.LowerName)
 | 
			
		||||
		ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
 | 
			
		||||
		ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s://%s/%s/%s.git", scheme, base.Domain, user.LowerName, repo.LowerName)
 | 
			
		||||
 | 
			
		||||
		ctx.Data["IsRepositoryValid"] = true
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user