# File lib/git/lib.rb, line 420
    def stash_save(message)
      output = command('stash save', [message])
      return false unless output.match(/HEAD is now at/)
      return true
    end