Method: Git::Lib#stash_apply

Defined in:
lib/git/lib.rb

#stash_apply(id = nil)



723
724
725
726
727
728
729
# File 'lib/git/lib.rb', line 723

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