class Git::Lib
Public Instance Methods
stash_drop(id = nil)
click to toggle source
# File lib/roku_builder/git.rb, line 20 def stash_drop(id = nil) if id command('stash drop', [id]) else command('stash drop') end end
stash_pop(id = nil)
click to toggle source
# File lib/roku_builder/git.rb, line 13 def stash_pop(id = nil) if id command('stash pop', [id]) else command('stash pop') end end