parent
050f5f6723
commit
036c123488
13 changed files with 429 additions and 83 deletions
|
@ -344,7 +344,9 @@ message Envelope {
|
|||
AskPassResponse ask_pass_response = 318;
|
||||
|
||||
GitDiff git_diff = 319;
|
||||
GitDiffResponse git_diff_response = 320; // current max
|
||||
GitDiffResponse git_diff_response = 320;
|
||||
|
||||
GitInit git_init = 321; // current max
|
||||
}
|
||||
|
||||
reserved 87 to 88;
|
||||
|
@ -2937,3 +2939,9 @@ message GitDiff {
|
|||
message GitDiffResponse {
|
||||
string diff = 1;
|
||||
}
|
||||
|
||||
message GitInit {
|
||||
uint64 project_id = 1;
|
||||
string abs_path = 2;
|
||||
string fallback_branch_name = 3;
|
||||
}
|
||||
|
|
|
@ -460,6 +460,7 @@ messages!(
|
|||
(CheckForPushedCommitsResponse, Background),
|
||||
(GitDiff, Background),
|
||||
(GitDiffResponse, Background),
|
||||
(GitInit, Background),
|
||||
);
|
||||
|
||||
request_messages!(
|
||||
|
@ -607,6 +608,7 @@ request_messages!(
|
|||
(GitChangeBranch, Ack),
|
||||
(CheckForPushedCommits, CheckForPushedCommitsResponse),
|
||||
(GitDiff, GitDiffResponse),
|
||||
(GitInit, Ack),
|
||||
);
|
||||
|
||||
entity_messages!(
|
||||
|
@ -713,6 +715,7 @@ entity_messages!(
|
|||
GitCreateBranch,
|
||||
CheckForPushedCommits,
|
||||
GitDiff,
|
||||
GitInit,
|
||||
);
|
||||
|
||||
entity_messages!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue