From 52cfd2743c0e85b36081cf80a850e6a5901f1865 Mon Sep 17 00:00:00 2001 From: zeripath Date: Thu, 26 Mar 2020 19:14:51 +0000 Subject: Option to set default branch at repository creation (#10803) * Option to set default branch at repository creation * Handle template repos with non-default master branch * Add DefaultBranch handling on creation to API Fix #9542 Signed-off-by: Andrew Thornton --- modules/structs/repo.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/structs/repo.go') diff --git a/modules/structs/repo.go b/modules/structs/repo.go index 04cc594f22..cabb5e12f9 100644 --- a/modules/structs/repo.go +++ b/modules/structs/repo.go @@ -112,6 +112,8 @@ type CreateRepoOption struct { License string `json:"license"` // Readme of the repository to create Readme string `json:"readme"` + // DefaultBranch of the repository (used when initializes and in template) + DefaultBranch string `json:"default_branch" binding:"GitRefName;MaxSize(100)"` } // EditRepoOption options when editing a repository's properties -- cgit v1.2.3