aboutsummaryrefslogtreecommitdiff
path: root/lib/backend/git.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backend/git.rb')
-rw-r--r--lib/backend/git.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/backend/git.rb b/lib/backend/git.rb
index 177657b..4ce016d 100644
--- a/lib/backend/git.rb
+++ b/lib/backend/git.rb
@@ -28,5 +28,13 @@ module Backend
false
end
end
+
+ def init(path)
+ @git = ::Git.init(path)
+ end
+
+ def clone(url, path)
+ @git = ::Git.clone(url, path)
+ end
end
end