Class: Git::Lib

Inherits:
Object
  • Object
show all
Defined in:
lib/roku_builder.rb

Instance Method Summary collapse

Instance Method Details

#stash_drop(id = nil) ⇒ Object



181
182
183
184
185
186
187
# File 'lib/roku_builder.rb', line 181

def stash_drop(id = nil)
  if id
    command('stash drop', [id])
  else
    command('stash drop')
  end
end

#stash_pop(id = nil) ⇒ Object



174
175
176
177
178
179
180
# File 'lib/roku_builder.rb', line 174

def stash_pop(id = nil)
  if id
    command('stash pop', [id])
  else
    command('stash pop')
  end
end