summaryrefslogtreecommitdiff
path: root/doDirty.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 04:05:59 -0500
committerJeff Carr <[email protected]>2025-10-17 04:05:59 -0500
commitf051898378892b9a58e36cc28af68200cadde315 (patch)
tree74220e4c9619cc86df7af4608b1edb83650fdc17 /doDirty.go
parentd02733e0f7fb64fb2dfc68e120e55dfd7fb5405b (diff)
remove "forge checkout". too easy to type instead of git checkout
Diffstat (limited to 'doDirty.go')
-rw-r--r--doDirty.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/doDirty.go b/doDirty.go
index 702302a..dc40e98 100644
--- a/doDirty.go
+++ b/doDirty.go
@@ -10,12 +10,7 @@ func doDirty() (string, error) {
if found.Len() == 0 {
return "nothing dirty", nil
}
- var footer string
- if argv.Verbose {
- footer = me.forge.PrintHumanTableDirty(found)
- } else {
- footer = me.forge.PrintHumanTable(found)
- }
+ footer := found.PrintDefaultTB()
return footer, nil
}