aboutsummaryrefslogtreecommitdiff
path: root/git.rb
diff options
context:
space:
mode:
Diffstat (limited to 'git.rb')
-rw-r--r--git.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/git.rb b/git.rb
index 4d6f011..8777eae 100644
--- a/git.rb
+++ b/git.rb
@@ -26,6 +26,10 @@ class VCS
`#{GITCMD} init`
end
+ def VCS.rm file
+ `#{GITCMD} rm #{file}`
+ end
+
def VCS.add file
`#{GITCMD} add #{file}`
end