You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/utils/gh-branch.sh

15 lines
165 B
Bash

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