mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
16 lines
188 B
Bash
16 lines
188 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
function update_gh_branch {
|
|
git checkout gh-pages
|
|
make
|
|
|
|
git add _posts
|
|
git commit -m 'documentation update'
|
|
git checkout master
|
|
}
|
|
|
|
update_gh_branch
|