From 23ab0f1ae184c7cc5f31251efd3da6cc9d33cedb Mon Sep 17 00:00:00 2001 From: Jangsea Park Date: Thu, 3 Mar 2016 15:11:58 +0900 Subject: [PATCH] Delete 'git push origin' and use 'ghp-import -p', push option --- pelican/tools/templates/fabfile.py.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pelican/tools/templates/fabfile.py.in b/pelican/tools/templates/fabfile.py.in index bcc66f6a..27cda566 100644 --- a/pelican/tools/templates/fabfile.py.in +++ b/pelican/tools/templates/fabfile.py.in @@ -90,5 +90,4 @@ def publish(): def gh_pages(): """Publish to GitHub Pages""" rebuild() - local("ghp-import -b {github_pages_branch} {deploy_path}".format(**env)) - local("git push origin {github_pages_branch}".format(**env)) + local("ghp-import -b {github_pages_branch} {deploy_path} -p".format(**env))