From 27d8ad20fdeccfd187a2360c0d436eded05417cd Mon Sep 17 00:00:00 2001 From: Vicky Steeves Date: Mon, 15 Aug 2016 12:46:56 -0400 Subject: [PATCH] Nikola auto commit. Nikola version: 7.7.12 --- conf.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/conf.py b/conf.py index 71c3316..5884abb 100644 --- a/conf.py +++ b/conf.py @@ -552,25 +552,25 @@ REDIRECTIONS = [] # to `nikola deploy`. If no arguments are specified, a preset # named `default` will be executed. You can use as many presets # in a `nikola deploy` command as you like. -DEPLOY_COMMANDS = [ - "git checkout gh-pages", - "rsync -rPv --delete-after --exclude old_blog --exclude .git --exclude .gitignore --exclude cache/ --exclude .doit.db.db output/ .", - "git add -A", - "git commit -a -m 'Updating blog content'", - "git push", - "git checkout master", -] +#DEPLOY_COMMANDS = [ + # "git checkout gh-pages", + # "rsync -rPv --delete-after --exclude old_blog --exclude .git --exclude .gitignore --exclude cache/ --exclude .doit.db.db output/ .", + #"git add -A", + # "git commit -a -m 'Updating blog content'", + # "git push", + # "git checkout master", +#] # github_deploy configuration # For more details, read the manual: # https://getnikola.com/handbook.html#deploying-to-github # For user.github.io OR organization.github.io pages, the DEPLOY branch # MUST be 'master', and 'gh-pages' for other repositories. -# GITHUB_SOURCE_BRANCH = 'master' -# GITHUB_DEPLOY_BRANCH = 'gh-pages' +GITHUB_SOURCE_BRANCH = 'master' +GITHUB_DEPLOY_BRANCH = 'gh-pages' # The name of the remote where you wish to push to, using github_deploy. -# GITHUB_REMOTE_NAME = 'origin' +GITHUB_REMOTE_NAME = 'origin' # Whether or not github_deploy should commit to the source branch automatically # before deploying.