mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
20 lines
277 B
Bash
Executable File
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
|