use git's PatchId
This commit is contained in:
parent
c752d40839
commit
93326a7e40
|
@ -56,6 +56,8 @@ message Patch {
|
|||
google.protobuf.Timestamp ctime = 24; // create time of the patch
|
||||
bool applied = 25; // have you applied this patch?
|
||||
bool upstream = 26; // has this patch been applied upstream?
|
||||
string patchId = 27; // patchId
|
||||
string treeHash = 28; // final tree Hash
|
||||
}
|
||||
|
||||
// this is a "PATCH: [1/x]" series
|
||||
|
@ -65,6 +67,7 @@ message Patches { // `autogenpb:mars
|
|||
repeated Patch Patches = 3;
|
||||
string Error = 5; // when passing these around, if there is an error, store it here
|
||||
}
|
||||
|
||||
message Patchset { // `autogenpb:marshal`
|
||||
Patches patches = 1; //
|
||||
string name = 2; // `autogenpb:sort`
|
||||
|
|
Loading…
Reference in New Issue