git-restash - restash changes
git restash [(-q|--quiet)] [stash]
git restash (-h|--help)
git restash (-v|--version)
Removes the changes applied by a stash. This is effectively a shortcut to reverse apply a stash patch:
git stash show --patch | git apply --reverse
The stash whose patch should be reverse applied. If not supplied, the latest stash will be used.
-q|--quietSuppress all non-error output.
-h|--helpPrint a simple help message.
-v|--versionPrint the current version.