Method: Git::Lib#stash_save

Defined in:
lib/git/lib.rb

#stash_save(message)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1258
1259
1260
1261
# File 'lib/git/lib.rb', line 1258

def stash_save(message)
  output = command('stash', 'save', message)
  output =~ /HEAD is now at/
end