git-secret/utils/gh-branch.sh
mail@sobolevn.me 38983de6ee staging
2016-03-13 14:09:47 +03:00

17 lines
256 B
Bash
Executable File

#!/usr/bin/env bash
set -e
function update_gh_branch {
local branch_name=$(git branch | grep '*' | sed 's/* //')
git checkout gh-pages
make
git add _posts
git commit -m 'documentation update'
git checkout "$branch_name"
}
update_gh_branch