git-secret/utils/gh-branch.sh
2016-02-24 00:25:39 +03:00

15 lines
165 B
Bash

#!/usr/bin/env bash
set -e
function update_gh_branch {
git checkout gh-pages
make
git add --all
git commit -m 'documentation update'
}
update_gh_branch