mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
;tools: push: refactor
This commit is contained in:
parent
7a5676dde4
commit
eff29ac10d
13
tools/push
13
tools/push
@ -6,6 +6,7 @@ set -e
|
||||
INTERVAL="${1:-10}"
|
||||
|
||||
LOCALBRANCH=master
|
||||
REMOTE=github
|
||||
REMOTECIBRANCH=simon
|
||||
REMOTEMAINBRANCH=master
|
||||
NUMRUNS=3
|
||||
@ -37,11 +38,11 @@ ciwait() {
|
||||
|
||||
echo "latest local commits are:"
|
||||
gitlog
|
||||
echo "force-pushing $LOCALBRANCH to github/$REMOTECIBRANCH"
|
||||
git push -f github $LOCALBRANCH:$REMOTECIBRANCH
|
||||
echo "force-pushing $LOCALBRANCH to $REMOTE/$REMOTECIBRANCH"
|
||||
git push -f $REMOTE $LOCALBRANCH:$REMOTECIBRANCH
|
||||
ciwait
|
||||
echo "pushing CI-passing $LOCALBRANCH to $REMOTEMAINBRANCH"
|
||||
git push github $LOCALBRANCH:$REMOTEMAINBRANCH
|
||||
echo "latest commits on github/$REMOTEMAINBRANCH are:"
|
||||
gitlog github/$REMOTEMAINBRANCH
|
||||
echo "pushing CI-passing $LOCALBRANCH to $REMOTE/$REMOTEMAINBRANCH"
|
||||
git push $REMOTE $LOCALBRANCH:$REMOTEMAINBRANCH
|
||||
echo "latest commits on $REMOTE/$REMOTEMAINBRANCH are:"
|
||||
gitlog $REMOTE/$REMOTEMAINBRANCH
|
||||
echo "done"
|
||||
|
Loading…
Reference in New Issue
Block a user