mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
15 lines
165 B
Bash
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
|