summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gbp/command_wrappers.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 64874891..49181354 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -204,6 +204,13 @@ class GitInit(GitCommand):
self.run_error = "Couldn't init git repository"
+class GitClone(GitCommand):
+ """Wrap git clone"""
+ def __init__(self):
+ GitCommand.__init__(self, 'clone')
+ self.run_error = "Couldn't clone git repository"
+
+
class GitShowBranch(GitCommand):
"""Wrap git show-branch"""
def __init__(self):