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/ref.proto')
-rw-r--r--proto/ref.proto16
1 files changed, 0 insertions, 16 deletions
diff --git a/proto/ref.proto b/proto/ref.proto
index ddedac199..e228d2319 100644
--- a/proto/ref.proto
+++ b/proto/ref.proto
@@ -98,13 +98,6 @@ service RefService {
};
}
- // Returns commits that are only reachable from the ref passed
- rpc ListNewCommits(ListNewCommitsRequest) returns (stream ListNewCommitsResponse) {
- option (op_type) = {
- op: ACCESSOR
- };
- }
-
rpc PackRefs(PackRefsRequest) returns (PackRefsResponse) {
option (op_type) = {
op: MUTATOR
@@ -376,15 +369,6 @@ message GetTagMessagesResponse {
string tag_id = 3;
}
-message ListNewCommitsRequest {
- Repository repository = 1 [(target_repository)=true];
- string commit_id = 2;
-}
-
-message ListNewCommitsResponse {
- repeated GitCommit commits = 1;
-}
-
message FindAllRemoteBranchesRequest {
Repository repository = 1 [(target_repository)=true];
string remote_name = 2;