diff options
| author | Jeff Carr <[email protected]> | 2025-11-02 21:09:57 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-11-02 21:09:57 -0600 |
| commit | f1dbe15854ba41e5f4706a436a5324b0a4434122 (patch) | |
| tree | ee43fe36e2a1a7e92aa4f8a5787beb2621edb923 /gitConfig.proto | |
| parent | 6475144cd37db9ece2a8df6477df820f642c9907 (diff) | |
work on a stats tag cache file
Diffstat (limited to 'gitConfig.proto')
| -rw-r--r-- | gitConfig.proto | 2 |
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` |
