diff options
-rw-r--r-- | MgaRepo/git.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MgaRepo/git.py b/MgaRepo/git.py index 3576893..ae2db6e 100644 --- a/MgaRepo/git.py +++ b/MgaRepo/git.py @@ -166,6 +166,11 @@ class GIT(VCS): status, output = self._execVcs(*cmd, **kwargs) return status, output + def pull(self, *args, **kwargs): + cmd = ["pull"] + list(args) + status, output = self._execVcs(*cmd, **kwargs) + return status, output + def push(self, *args, **kwargs): cmd = ["push"] + list(args) status, output = self._execVcs(*cmd, **kwargs) |