summaryrefslogtreecommitdiff
path: root/gitTag.proto
diff options
context:
space:
mode:
Diffstat (limited to 'gitTag.proto')
-rw-r--r--gitTag.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitTag.proto b/gitTag.proto
index 581a9b9..e69a25e 100644
--- a/gitTag.proto
+++ b/gitTag.proto
@@ -4,7 +4,7 @@ package gitpb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-message GitTag {
+message GitTag { // `autogenpb:marshal`
string refname = 1; // `autogenpb:unique` // tag name. treated as unique
google.protobuf.Timestamp creatordate = 2; // git creatordate
google.protobuf.Timestamp authordate = 3; // git author date
@@ -12,7 +12,7 @@ message GitTag {
string subject = 5; // git tag subject
}
-message GitTags {
+message GitTags { // `autogenpb:marshal`
string uuid = 1; // I guess why not just have this on each file
string version = 2; // maybe can be used for protobuf schema change violations
repeated GitTag gitTags = 3;