Method: Git::Lib#stash_apply

Defined in:
lib/git/lib.rb

#stash_apply(id = nil)

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.



1263
1264
1265
1266
1267
1268
1269
# File 'lib/git/lib.rb', line 1263

def stash_apply(id = nil)
  if id
    command('stash', 'apply', id)
  else
    command('stash', 'apply')
  end
end