mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 02:04:11 +01:00 
			
		
		
		
	go get
This commit is contained in:
		
							parent
							
								
									9d983f27d6
								
							
						
					
					
						commit
						d26a333dfb
					
				@ -255,12 +255,13 @@ func CreateRepository(user *User, name, desc, lang, license string, private, mir
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	repo := &Repository{
 | 
			
		||||
		OwnerId:     user.Id,
 | 
			
		||||
		Name:        name,
 | 
			
		||||
		LowerName:   strings.ToLower(name),
 | 
			
		||||
		Description: desc,
 | 
			
		||||
		IsPrivate:   private,
 | 
			
		||||
		IsBare:      lang == "" && license == "" && !initReadme,
 | 
			
		||||
		OwnerId:       user.Id,
 | 
			
		||||
		Name:          name,
 | 
			
		||||
		LowerName:     strings.ToLower(name),
 | 
			
		||||
		Description:   desc,
 | 
			
		||||
		IsPrivate:     private,
 | 
			
		||||
		IsBare:        lang == "" && license == "" && !initReadme,
 | 
			
		||||
		DefaultBranch: "master",
 | 
			
		||||
	}
 | 
			
		||||
	repoPath := RepoPath(user.Name, repo.Name)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -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:
 | 
			
		||||
 | 
			
		||||
@ -9,7 +9,7 @@
 | 
			
		||||
		<meta name="description" content="Gogs(Go Git Service) is a GitHub-like clone in the Go Programming Language" />
 | 
			
		||||
		<meta name="keywords" content="go, git">
 | 
			
		||||
		<meta name="_csrf" content="{{.CsrfToken}}" />
 | 
			
		||||
		{{if .Repository.IsGoget}}<meta name="go-import" content="{{AppDomain}} git {{.CloneLink.HTTPS}}">{{end}}
 | 
			
		||||
		<meta name="go-import" content="{{AppDomain}} git {{if .Repository.IsGoget}}{{.GoGetLink}}{{else}}{{AppDomain}}/{{end}}">
 | 
			
		||||
 | 
			
		||||
		 <!-- Stylesheets -->
 | 
			
		||||
		{{if IsProdMode}}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user