summaryrefslogtreecommitdiff
path: root/patch.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-11 22:48:33 -0600
committerJeff Carr <[email protected]>2024-12-11 22:48:33 -0600
commitb7e36449dec8c2939210f55d98dd6dc2c0453e04 (patch)
tree0043a17500161a6718a29a42a658a3bddf02df6f /patch.proto
parentdae2653975b6db822633430a97adbb21b52a99ff (diff)
make patchset
Diffstat (limited to 'patch.proto')
-rw-r--r--patch.proto14
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; //
}