diff options
author | Ray Strode <rstrode@redhat.com> | 2016-12-06 14:16:03 +0000 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2016-12-06 14:16:03 +0000 |
commit | 9110705c1f0cdfa65f91ecdb636065c033b5f0b2 (patch) | |
tree | 11859fb140a98fc9fb0a04384604ce6e87fceba3 /sync-github-mirror | |
parent | b422f7531ba7563b2d25f43d72f0cf04a4da3cff (diff) |
sync-github-mirror: drop unused line
Diffstat (limited to 'sync-github-mirror')
-rwxr-xr-x | sync-github-mirror | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sync-github-mirror b/sync-github-mirror index 1032fac..9222f50 100755 --- a/sync-github-mirror +++ b/sync-github-mirror @@ -132,7 +132,6 @@ def main (): try: out = tempfile.NamedTemporaryFile (prefix="github",suffix="std") err = tempfile.NamedTemporaryFile (prefix="github",suffix="err") - command = 'git config --local push.default matching' command = 'git push --force --no-verify --prune git@github.com:%s/%s refs/heads/*:refs/heads/*' % (ORGANIZATION, github_name) subprocess.check_call(shlex.split(command), stderr=err, stdout=out) command = 'git push --force --no-verify --prune git@github.com:%s/%s refs/tags/*:refs/tags/*' % (ORGANIZATION, github_name) |