From edfe670d4bffeccc2a55df572ea14c0245bd30ea Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 5 Sep 2009 13:06:52 +0200 Subject: add GitClone --- gbp/command_wrappers.py | 7 +++++++ 1 file changed, 7 insertions(+) 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): -- cgit v1.2.3