summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gbp/command_wrappers.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 1a966c17..cd36bf57 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -195,6 +195,7 @@ class GitCommand(Command):
"Mother/Father of all git commands"
def __init__(self, cmd, args=[], **kwargs):
Command.__init__(self, 'git', [cmd] + args, **kwargs)
+ self.run_error = "Couldn't run git %s" % cmd
class GitInit(GitCommand):
@@ -246,6 +247,15 @@ class GitPull(GitCommand):
self.run_error = 'Couldn\'t pull "%s" to "%s"' % (branch, repo)
+class GitFetch(GitCommand):
+ """Wrap git fetch"""
+ def __init__(self, remote = None):
+ opts = []
+ if remote:
+ opts += [remote]
+ GitCommand.__init__(self, 'fetch', opts)
+
+
class GitMerge(GitCommand):
"""Wrap git merge"""
def __init__(self, branch, verbose=False):