package
2.8.0
Repository: https://github.com/ldez/go-git-cmd-wrapper.git
Documentation: pkg.go.dev

# Functions

All This option is only valid for push and save commands.
Apply git stash apply [--index] [-q|--quiet] [<stash>].
Branch git stash branch <branchname> [<stash>].
Clear git stash clear.
Create git stash create.
Drop git stash drop [-q|--quiet] [<stash>].
HyphenHyphen add `--`.
IncludeUntracked When used with the push and save commands, all untracked files are also stashed and then cleaned up with git clean.
Index This option is only valid for pop and apply commands.
KeepIndex This option is only valid for push and save commands.
List git stash list [<log-options>].
NoIncludeUntracked Opposite of --include-untracked.
NoKeepIndex Opposite of --keep-index.
OnlyUntracked This option is only valid for the show command.
Patch This option is only valid for push and save commands.
PathspecFileNul This option is only valid for push command.
PathspecFromFile This option is only valid for push command.
Pop git stash pop [--index] [-q|--quiet] [<stash>].
Push git stash push [-p|--patch] [-S|--staged] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q|--quiet] [(-m|--message) <message>] [--pathspec-from-file=<file> [--pathspec-file-nul]] [--] [<pathspec>...].
Quiet This option is only valid for apply, drop, pop, push, save, store commands.
Save git stash save [-p|--patch] [-S|--staged] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q|--quiet] [<message>].
Show git stash show [-u|--include-untracked|--only-untracked] [<diff-options>] [<stash>].
Staged This option is only valid for push and save commands.
Store git stash store.