git-restash - restash changes
git restash [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.
-h|--helpPrint a simple help message.
-v|--versionPrint the current version.