summaryrefslogtreecommitdiff
path: root/gitConfig.proto
diff options
context:
space:
mode:
Diffstat (limited to 'gitConfig.proto')
-rw-r--r--gitConfig.proto2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitConfig.proto b/gitConfig.proto
index 094e204..740cfe1 100644
--- a/gitConfig.proto
+++ b/gitConfig.proto
@@ -2,6 +2,7 @@ syntax = "proto3";
package gitpb;
+import "stat.proto";
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
message GitRemote { // `autogenpb:nomutex`
@@ -14,6 +15,7 @@ message GitBranch { // `autogenpb:nomutex`
string name = 1; // the branch name from the config file
string remote = 2; // the name of the remote repo
string merge = 3; // the merge path from the config file
+ Stat stat = 4; // a git stat proto msg
}
message GitConfig { // `autogenpb:nomutex`