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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2020-02-20 11:31:08 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2020-02-20 11:31:08 +0300
commit9778fc7a827988b79e94139ccbeb5f8ff1603362 (patch)
tree05d5873ee92252f84ec44007a2b887617b3a7293 /proto/operations.proto
parent51e3e57cfcf48563cf3cddf31ca81968a75dad3a (diff)
Remove branch field from UserSquash
The field was replaced, and now the caller uses object IDs instead of branches and the dereferenced target is stable. Closes: https://gitlab.com/gitlab-org/gitaly/issues/2423
Diffstat (limited to 'proto/operations.proto')
-rw-r--r--proto/operations.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/operations.proto b/proto/operations.proto
index 787009ef6..8c537cdb4 100644
--- a/proto/operations.proto
+++ b/proto/operations.proto
@@ -380,7 +380,7 @@ message UserSquashRequest {
Repository repository = 1 [(target_repository)=true];
User user = 2;
string squash_id = 3;
- bytes branch = 4 [deprecated=true];
+ reserved 4;
string start_sha = 5;
string end_sha = 6;
User author = 7;