diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 01:15:31 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 01:15:31 -0600 |
| commit | 4bc95ad2684cb42159229b8198aa8a2377f80aa1 (patch) | |
| tree | 57c4b95880302bfd3a34d0cc3eec6ab79f1d0993 /repo.proto | |
| parent | c53da5a9a1da1b29db24d4e1ce2b294514d99ac2 (diff) | |
keep isolating use of os.Exec("git")
Diffstat (limited to 'repo.proto')
| -rw-r--r-- | repo.proto | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -39,6 +39,9 @@ message Repo { // `autogenpb:marshal` GitTimes times = 25; // store all the mtime values here. these are temporary GoInfo goInfo = 26; // put all the go specifcs here string stateChange = 27; // reason for state change + string lastTag = 28; // the oldest tag + string currentBranchName = 29; // the branch currently checked out + string currentBranchVersion = 30; // the branch currently checked out } message Repos { // `autogenpb:marshal` @@ -71,4 +74,5 @@ message GoInfo { GoDeps published = 9; // the last published go.mod/go.sum bytes goMod = 10; // the last go.mod file bytes goSum = 11; // the last go.sum file + bool gitIgnoresGoSum = 12; // does .gitignore ignore go.mod & go.sum? } |
