diff options
Diffstat (limited to 'patch.proto')
| -rw-r--r-- | patch.proto | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/patch.proto b/patch.proto index a35bca6..2e463b5 100644 --- a/patch.proto +++ b/patch.proto @@ -17,8 +17,14 @@ message Patchs { // `autogenpb:marshal` string uuid = 1; // `autogenpb:uuid:0703df95-6a38-4422-994b-c55d3d6001f9` // todo: add file support string version = 2; // could be used for protobuf schema change violations? repeated Patch Patchs = 3; - string name = 4; // could be used for protobuf schema change violations? - string comment = 5; // could be used for protobuf schema change violations? - string gitAuthor = 6; // could be used for protobuf schema change violations? - google.protobuf.Timestamp ctime = 7; // the git commit timestamp of the version + string name = 4; // + string comment = 5; // + string gitAuthorName = 6; // + string gitAuthorEmail = 7; // + google.protobuf.Timestamp ctime = 8; // create time of this patchset + string tmpDir = 9; // temp dir + string startBranchName = 10; // + string endBranchName = 11; // + string startBranchHash = 12; // + string endBranchHash = 13; // } |
