diff options
Diffstat (limited to 'repo.proto')
| -rw-r--r-- | repo.proto | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -6,7 +6,6 @@ package gitpb; // If the project is in golang, also gets the go language dependacies import "stat.proto"; -import "gitTag.proto"; import "goDep.proto"; import "gitConfig.proto"; import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp @@ -68,17 +67,15 @@ message Repo { // `autogenpb string state = 21; // status or state. useful for building tooling GitConfig config = 22; // protobuf of the current .git/config GoInfo goInfo = 23; // put all the go specifcs here - GitTag currentTag = 24; // used to examine repo branches - GitTags tags = 25; // known tags Stat masterStat = 26; // just store this for now Stat develStat = 27; // just store this for now Stat userStat = 28; // just store this for now - Stats refs = 29; // just store this for now + Stats tags = 29; // just store this for now } message Repos { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:gui` `autogenpb:nomutex` `autogenpb:http` string uuid = 1; // `autogenpb:uuid:8daaeba1-fb1f-4762-ae6e-95a55d352673` - string version = 2; // `autogenpb:version:v0.0.8 go.wit.com/protobuf/gitpb` + string version = 2; // `autogenpb:version:v0.1.0 go.wit.com/protobuf/gitpb` repeated Repo repos = 3; // `autogenpb:append` // generate AppendUnique() function for this bool hasFullScan = 4; // a full repo scan has been saved to disk google.protobuf.Timestamp fullScan = 5; // mtime of the last full scan saved to disk |
