Browse Source

RepoInit Respect AlternateDefaultBranch (#12746)

tags/v1.13.0-rc1
6543 GitHub 5 years ago
parent
commit
724858e211
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/repository/create.go

+ 4
- 0
modules/repository/create.go View File

@@ -23,6 +23,10 @@ func CreateRepository(doer, u *models.User, opts models.CreateRepoOptions) (_ *m
}
}

if len(opts.DefaultBranch) == 0 {
opts.DefaultBranch = setting.Repository.DefaultBranch
}

repo := &models.Repository{
OwnerID: u.ID,
Owner: u,


Loading…
Cancel
Save