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
path: root/proto
diff options
context:
space:
mode:
authorJames Liu <jliu@gitlab.com>2023-11-30 03:38:34 +0300
committerJames Liu <jliu@gitlab.com>2023-12-01 06:41:30 +0300
commitae31c190f9e0c3db5d207b6b7a133949aee1560c (patch)
tree8ea051300f1b979f693b0c9c6bae3005757a1ab9 /proto
parent5fcb97aa340b56182747ed79968fb591a9ea4cdd (diff)
proto: Add missing docs for FetchSourceBranch RPC
Diffstat (limited to 'proto')
-rw-r--r--proto/go/gitalypb/repository.pb.go4
-rw-r--r--proto/repository.proto4
2 files changed, 4 insertions, 4 deletions
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index 11b17c84e..fae6c1483 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -1489,7 +1489,7 @@ func (x *HasLocalBranchesResponse) GetValue() bool {
return false
}
-// FetchSourceBranchRequest ...
+// FetchSourceBranchRequest is a request for the FetchSourceBranch RPC.
type FetchSourceBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1568,7 +1568,7 @@ func (x *FetchSourceBranchRequest) GetTargetRef() []byte {
return nil
}
-// FetchSourceBranchResponse ...
+// FetchSourceBranchResponse is a response for the FetchSourceBranch RPC.
type FetchSourceBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/repository.proto b/proto/repository.proto
index 541c2baed..b1074efc1 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -680,7 +680,7 @@ message HasLocalBranchesResponse {
bool value = 1;
}
-// FetchSourceBranchRequest ...
+// FetchSourceBranchRequest is a request for the FetchSourceBranch RPC.
message FetchSourceBranchRequest {
// repository into which the reference shall be fetched. After a successful
// call, it should contain the target reference which points to the same
@@ -695,7 +695,7 @@ message FetchSourceBranchRequest {
bytes target_ref = 4;
}
-// FetchSourceBranchResponse ...
+// FetchSourceBranchResponse is a response for the FetchSourceBranch RPC.
message FetchSourceBranchResponse {
// result denotes if the source branch was successfully fetched into the target
// repository. It is false if resolving the remote reference or fetching it failed.