Update command line description in go/cmd/dolt/commands/stashcmds/stash.go

Co-authored-by: Jason Fulghum <jason@dolthub.com>
This commit is contained in:
Nick Tobey
2023-04-27 15:42:05 -07:00
committed by GitHub
parent 65f6202a3a
commit 226dc15649
+1 -1
View File
@@ -80,7 +80,7 @@ func (cmd StashCmd) Docs() *cli.CommandDocumentation {
func (cmd StashCmd) ArgParser() *argparser.ArgParser {
ap := argparser.NewArgParserWithMaxArgs(cmd.Name(), 0)
ap.SupportsFlag(IncludeUntrackedFlag, "u", "Untracked tables are also stashed.")
ap.SupportsFlag(AllFlag, "a", "All tables are staged, including untracked and ignored tables.")
ap.SupportsFlag(AllFlag, "a", "All tables are stashed, including untracked and ignored tables.")
return ap
}