class Git::Stashes

Collection of stash entries for a Git repository

@example Iterate over stash entries

git.stashes.each { |s| puts s.message }

@example Check and apply a stash

git.stashes.size   #=> 2
git.stashes.apply

@api public