Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proto/repository-service.proto')
-rw-r--r--proto/repository-service.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 7012d7150..e55f3d44f 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -408,6 +408,10 @@ message FetchRemoteResponse {
message CreateRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
+ // Provide a branch name to set as the default branch of a newly created
+ // repository. Note, this will be treated as the branch name and not a
+ // fully qualified reference.
+ bytes default_branch = 2;
}
message CreateRepositoryResponse {}