summaryrefslogtreecommitdiff
path: root/stat.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 00:25:50 -0500
committerJeff Carr <[email protected]>2025-10-15 00:25:50 -0500
commit9d78641fec474803bd37c281ff1b436bf4666a21 (patch)
treefd8b0682560a7f767b50f2396fa05e8e383842c6 /stat.proto
parent32d4a18a23f2060b5f5dc312bef8fd7975386125 (diff)
misc improvementsv0.0.164
Diffstat (limited to 'stat.proto')
-rw-r--r--stat.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/stat.proto b/stat.proto
index 7693660..4a2ccc1 100644
--- a/stat.proto
+++ b/stat.proto
@@ -15,7 +15,7 @@ message Stat {
}
string patchId = 1; // `autogenpb:unique` // git hash
string hash = 2; // `autogenpb:unique` // git hash
- google.protobuf.Timestamp mtime = 3; // mtime for the .git/config file
+ google.protobuf.Timestamp ctime = 3; // ctime for the .git/config file
string name = 4; //
string remote = 5; // blank unless REMOTE
RefType type = 6; // is set by git as the master branch
@@ -28,5 +28,5 @@ message Stats { // `autogenpb:marshal` `a
repeated Stat stats = 3;
string filename = 4; // `autogenpb:save` -- this enables autogenerated pb.Load() and pb.Save()
string head = 5; // the current origin hash
- google.protobuf.Timestamp mtime = 6; // mtime for the .git/config file
+ google.protobuf.Timestamp mtime = 6; // mtime for .git/
}