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.proto')
-rw-r--r--proto/repository.proto9
1 files changed, 5 insertions, 4 deletions
diff --git a/proto/repository.proto b/proto/repository.proto
index a5381384a..9fc49809e 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -85,7 +85,7 @@ service RepositoryService {
};
}
- // CreateRepository ...
+ // CreateRepository creates a new empty repository.
rpc CreateRepository(CreateRepositoryRequest) returns (CreateRepositoryResponse) {
option (op_type) = {
op: MUTATOR
@@ -595,9 +595,9 @@ message FetchRemoteResponse {
bool tags_changed = 1;
}
-// CreateRepositoryRequest ...
+// CreateRepositoryRequest is a request for the CreateRepository RPC.
message CreateRepositoryRequest {
- // repository ...
+ // repository represents the repo to create. The storage_name and relative_path attributes must be provided.
Repository repository = 1 [(target_repository)=true];
// default_branch is the branch name to set as the default branch of the newly created
// repository. Note, this will be treated as the branch name and not a
@@ -609,7 +609,8 @@ message CreateRepositoryRequest {
ObjectFormat object_format = 3;
}
-// CreateRepositoryResponse ...
+// CreateRepositoryResponse is a response for the CreateRepository RPC. An empty
+// response denotes a successful request.
message CreateRepositoryResponse {
}