ruby/proto/gitaly/diff_services_pb.rb in gitaly-16.4.7 vs ruby/proto/gitaly/diff_services_pb.rb in gitaly-16.5.0.pre.rc1
- old
+ new
@@ -14,20 +14,20 @@
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
self.service_name = 'gitaly.DiffService'
- # Returns stream of CommitDiffResponse with patches chunked over messages
+ # CommitDiff returns stream of CommitDiffResponse with patches chunked over messages.
rpc :CommitDiff, ::Gitaly::CommitDiffRequest, stream(::Gitaly::CommitDiffResponse)
- # Return a stream so we can divide the response in chunks of deltas
+ # CommitDelta returns a stream so we can divide the response in chunks of deltas.
rpc :CommitDelta, ::Gitaly::CommitDeltaRequest, stream(::Gitaly::CommitDeltaResponse)
- # This comment is left unintentionally blank.
+ # RawDiff ...
rpc :RawDiff, ::Gitaly::RawDiffRequest, stream(::Gitaly::RawDiffResponse)
- # This comment is left unintentionally blank.
+ # RawPatch ...
rpc :RawPatch, ::Gitaly::RawPatchRequest, stream(::Gitaly::RawPatchResponse)
- # This comment is left unintentionally blank.
+ # DiffStats ...
rpc :DiffStats, ::Gitaly::DiffStatsRequest, stream(::Gitaly::DiffStatsResponse)
- # Return a list of files changed along with the status of each file
+ # FindChangedPaths returns a list of files changed along with the status of each file
rpc :FindChangedPaths, ::Gitaly::FindChangedPathsRequest, stream(::Gitaly::FindChangedPathsResponse)
# GetPatchID computes a patch ID for a patch. Patch IDs are a unique ID computed by hashing
# a patch with some parameters like line numbers ignored. The patch ID can thus be used to compare
# whether diffs make the same change. Please refer to git-patch-id(1) for further information.
# If the difference between old and new change is empty then this RPC returns an error.