git-snapshot - create a snapshot of the changes in a dirty working directory
git snapshot message
git snapshot (-h|--help)
git snapshot (-v|--version)
Used to record the current state of the working directory without reverting it. This is effectively a shortcut to:
$ git stash save -u "optional message"
$ git stash apply
The message to use when creating the underlying stash. If no message is supplied, the default git-stash message is used.
-h|--helpPrint a simple help message.
-v|--versionPrint version.