summaryrefslogtreecommitdiffstats
path: root/src/pyfedpkg/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyfedpkg/__init__.py')
-rw-r--r--src/pyfedpkg/__init__.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py
index 790cb93..a49f4ed 100644
--- a/src/pyfedpkg/__init__.py
+++ b/src/pyfedpkg/__init__.py
@@ -638,6 +638,20 @@ def new(path=None):
log.debug('Diffing from tag %s' % tag)
return repo.git.diff('-M', tag)
+def pull():
+ """Pull changes from the main repository"""
+
+ cmd = ['git', 'pull']
+ _run_command(cmd)
+ return
+
+def push():
+ """Push changes to the main repository"""
+
+ cmd = ['git', 'push']
+ _run_command(cmd)
+ return
+
def sources(path, outdir=None):
"""Download source files"""
@@ -1544,20 +1558,6 @@ class PackageModule:
_run_command(cmd, shell=True)
return
- def pull(self):
- """Pull changes from the main repository"""
-
- cmd = ['git', 'pull']
- _run_command(cmd)
- return
-
- def push(self):
- """Push changes to the main repository"""
-
- cmd = ['git', 'push']
- _run_command(cmd)
- return
-
def srpm(self, hashtype=None):
"""Create an srpm using hashtype from content in the module