Method: Gitgo::Git#rm
- Defined in:
- lib/gitgo/git.rb
#rm(*paths) ⇒ Object
Removes the content at each of the specified paths
461 462 463 464 |
# File 'lib/gitgo/git.rb', line 461 def rm(*paths) paths.each {|path| self[path] = nil } self end |