POSIX/Unix shell command that allows using git stash
command using the
stash's name/message.
- POSIX/Unix shell
git
command
git-named-stash show <name-of-stash> [<git-stash-arguments>...]
or:
git-named-stash drop <name-of-stash> [<git-stash-arguments>...]
or:
git-named-stash pop <name-of-stash> [<git-stash-arguments>...]
or:
git-named-stash apply <name-of-stash> [<git-stash-arguments>...]
or:
git-named-stash push <name-of-stash> [<git-stash-arguments>...]
or:
git-named-stash (--help | -H | -h | -?)
or:
git-named-stash (--version | -V | -v)
--help, -H, -h, -?
- Print the help message.
--version, -V, -v
- Print version and copyright information.
- If there are multiple stashes with the same name/message, the one with the lowest index is used.
- 0 (
EX_OK
): Successful exit - 64 (
EX_USAGE
): Incorrect arguments supplied - 69 (
EX_UNAVAILABLE
): Stash was not found