git-secret/utils/gh-branch.sh
2016-07-02 13:24:32 +03:00

20 lines
277 B
Bash
Executable File

#!/usr/bin/env bash
set -e
function update_gh_branch {
local branch_name
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