Method: Git::Stashes#all

Defined in:
lib/git/stashes.rb

#allArray

Returns an multi-dimensional Array of elements that have been stash saved. Array is based on position and name. See Example

Examples:

Returns Array of items that have been stashed

.all - [0, "testing-stash-all"]]

Returns:

  • (Array)


24
25
26
# File 'lib/git/stashes.rb', line 24

def all
  @base.lib.stashes_all
end