summaryrefslogtreecommitdiff
path: root/gitTag.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-29 21:51:30 -0600
committerJeff Carr <[email protected]>2024-11-29 21:51:30 -0600
commit3d260a0219841f4835d6a0d0e370bde483f35d08 (patch)
treeb6e3b09004109581d618613d9c72d2049656074b /gitTag.proto
parent4a79cccffd6cd20e42271eada567c4b8c0edc2f4 (diff)
updates for autogenpb
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 14bf4dc..581a9b9 100644
--- a/gitTag.proto
+++ b/gitTag.proto
@@ -5,10 +5,10 @@ package gitpb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
message GitTag {
- string refname = 1; // tag name. treated as unique
+ 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
- string hash = 4; // git hash
+ string hash = 4; // `autogenpb:unique` // git hash
string subject = 5; // git tag subject
}