[go: up one dir, main page]

Conversation CommitService::LastCommitForPath

Feature Flag: gitaly_last_commit_for_path


Migration Point

Stages:

Blocked On:

RPC Endpoints:

  • CommitService::LastCommitIdForPath

Issues:

Known Client Routes:

  • Known client endpoints

service CommitService {
  rpc LastCommitIdForPath(LastCommitIdForPathRequest) returns (LastCommitIdForPathResponse) {}
}

message LastCommitIdForPathRequest {
  Repository repository = 1;
  bytes revision = 2;
}

LastCommitIdForPathResponse {
  // Empty if not found
  string commit_id = 1;
}
Edited by Andrew Newdigate