diff options
| author | Jeff Carr <[email protected]> | 2024-01-23 10:52:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-23 10:52:17 -0600 |
| commit | 294119e7c2678b609aa8b66b6ffc219f1c399309 (patch) | |
| tree | 1a0b9e7de365e6540d0b3f9cc762a852472e32f6 /structs.go | |
| parent | 7546209d24055bb1252ba3cab63e09f692c3e74b (diff) | |
buttons for scanning .git/config and go.sum
common branch handling
scan go.sum & .git/config on New()
parse go & git config files
cleaner debugging
cleaning up logging
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -23,6 +23,8 @@ type RepoStatus struct { // status *gadgets.OneLiner dirtyLabel *gadgets.OneLiner path *gadgets.OneLiner + goSrcPath *gadgets.OneLiner + realPath *gadgets.OneLiner currentBranch *gadgets.OneLiner currentVersion *gadgets.OneLiner @@ -33,6 +35,10 @@ type RepoStatus struct { develBranchVersion *gadgets.OneLiner userBranchVersion *gadgets.OneLiner + mainWorkingName *gadgets.OneLiner + develWorkingName *gadgets.OneLiner + userWorkingName *gadgets.OneLiner + develMerge *gui.Node releaseVersion *gui.Node @@ -60,4 +66,7 @@ type RepoStatus struct { speed *gadgets.OneLiner speedActual *gadgets.OneLiner + + gitConfig *GitConfig + goConfig GoConfig } |
