git-snapshot - create a snapshot of the changes in a dirty working directory
git snapshot [message] [(-q|--quiet)] [-- file [file ...]]
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.
-q|--quietSuppress all non-error output.
-h|--helpPrint a simple help message.
-v|--versionPrint version.
Do not interpret any more arguments as options.
Files to be included in the snapshot. The files can be absolute or specified using pathspecs.