mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
9 lines
100 B
Bash
9 lines
100 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
function update_gh_branch {
|
||
|
git checkout gh-pages
|
||
|
make
|
||
|
}
|
||
|
|
||
|
update_gh_branch
|