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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-06-08 07:03:43 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-06-08 07:11:11 +0300
commita6f559d174f2a6d2f561bce5e979aa17e4ddafec (patch)
tree41827508424cc6c781018cd3c2de5688c7fcb7e7 /proto/go/gitalypb/remote.pb.go
parentfa7ba1c0e25fa4fa73da917139c68396d71b695e (diff)
proto: Use Go identifiers for UpdateRemoteMirror documentation
When generating Go code from protobuf messages, we always have a mismatch between declared variables and generated identifiers. This leads to a mismatch in generated documentation, where the variable documentation does not start with the Go variable name as it is best practice in Go. Because of this, we have started to use Go identifiers in protobuf documentation to fix the discrepancy. Update documentation of variables in messages related to UpdateRemoteMirror to do so consistenly.
Diffstat (limited to 'proto/go/gitalypb/remote.pb.go')
-rw-r--r--proto/go/gitalypb/remote.pb.go28
1 files changed, 15 insertions, 13 deletions
diff --git a/proto/go/gitalypb/remote.pb.go b/proto/go/gitalypb/remote.pb.go
index fd311b112..d7dc76290 100644
--- a/proto/go/gitalypb/remote.pb.go
+++ b/proto/go/gitalypb/remote.pb.go
@@ -292,23 +292,25 @@ func (m *FetchInternalRemoteResponse) GetResult() bool {
}
type UpdateRemoteMirrorRequest struct {
- // repository is the repository whose mirror repository to update.
+ // Repository is the repository whose mirror repository to update.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- // ref_name is actually the remote to update.
+ // RefName is actually the remote to update.
RefName string `protobuf:"bytes,2,opt,name=ref_name,json=refName,proto3" json:"ref_name,omitempty"`
- // only_branches_matching contains patterns to match branches against. Only
- // the matched brances are updated in the remote mirror. If no patterns are
+ // OnlyBranchesMatching contains patterns to match branches against. Only the
+ // matched brances are updated in the remote mirror. If no patterns are
// specified, all branches are updated. The patterns should only contain the
- // branch name without the 'refs/heads/' prefix. "*" can be used as a wildcard
- // to match anything. only_branches_matching can be streamed to the server over multiple
- // messages. Optional.
+ // branch name without the 'refs/heads/' prefix. "*" can be used as a
+ // wildcard to match anything. only_branches_matching can be streamed to the
+ // server over multiple messages. Optional.
OnlyBranchesMatching [][]byte `protobuf:"bytes,3,rep,name=only_branches_matching,json=onlyBranchesMatching,proto3" json:"only_branches_matching,omitempty"`
- // ssh_key is the SSH key to use for accessing to the mirror repository. Optional.
+ // SshKey is the SSH key to use for accessing to the mirror repository.
+ // Optional.
SshKey string `protobuf:"bytes,4,opt,name=ssh_key,json=sshKey,proto3" json:"ssh_key,omitempty"`
- // known_hosts specifies the identities used for strict host key checking. Optional.
+ // KnownHosts specifies the identities used for strict host key checking.
+ // Optional.
KnownHosts string `protobuf:"bytes,5,opt,name=known_hosts,json=knownHosts,proto3" json:"known_hosts,omitempty"`
- // keep_divergent_refs specifies whether or not to update diverged references in the
- // mirror repository.
+ // KeepDivergentRefs specifies whether or not to update diverged references
+ // in the mirror repository.
KeepDivergentRefs bool `protobuf:"varint,6,opt,name=keep_divergent_refs,json=keepDivergentRefs,proto3" json:"keep_divergent_refs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -383,8 +385,8 @@ func (m *UpdateRemoteMirrorRequest) GetKeepDivergentRefs() bool {
}
type UpdateRemoteMirrorResponse struct {
- // divergent_refs contains a list of references that had diverged in the mirror from the
- // source repository.
+ // DivergentRefs contains a list of references that had diverged in the
+ // mirror from the source repository.
DivergentRefs [][]byte `protobuf:"bytes,1,rep,name=divergent_refs,json=divergentRefs,proto3" json:"divergent_refs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`