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>2022-05-09 13:23:52 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:23:52 +0300
commit9bb6fb420b75ad7657a30751ba7df7c9bf1e0060 (patch)
tree609626f18144fab34a44f8bab360d527f4dab1aa /proto/ssh.proto
parent58aa3bc8b0f8a1dd7fd9ec006ff870d59d8c01be (diff)
proto: Enforce comment-linting for message fields
Enforce that message fields must have a comment and add a placeholder for all instances where such a comment is missing.
Diffstat (limited to 'proto/ssh.proto')
-rw-r--r--proto/ssh.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ssh.proto b/proto/ssh.proto
index 1621cff2b..73f9844a5 100644
--- a/proto/ssh.proto
+++ b/proto/ssh.proto
@@ -89,12 +89,12 @@ message SSHReceivePackRequest {
// Contents of GL_ID, GL_REPOSITORY, and GL_USERNAME environment variables
// for 'git receive-pack'
string gl_id = 3;
+ // This comment is left unintentionally blank.
string gl_repository = 4;
+ // This comment is left unintentionally blank.
string gl_username = 5;
-
// Git protocol version
string git_protocol = 6;
-
// Parameters to use with git -c (key=value pairs)
repeated string git_config_options = 7;
}