class Git::Stash

Represents a single stash entry in a Git repository

@example Create a stash and inspect the result

stash = Git::Stash.new(repo, 'WIP: feature work')
stash.message  #=> "WIP: feature work"
stash.saved?   #=> true

@api public