automerge: add option to start with a reset

* admin/automerge (usage): Mention -r.
(reset): New variable.
(-r): New option.
(main): If requested, do a reset and pull.
This commit is contained in:
Glenn Morris 2018-01-31 12:54:26 -05:00
parent 4dbc1ef5e6
commit aac3ba4d43

View file

@ -27,8 +27,7 @@
## and then push it.
## Intended usage:
## Have a dedicated git directory just for this.
## Have a cron job that does a hard reset (to clean up after any
## previous failures), then a git pull, then calls this script with -p.
## Have a cron job that calls this script with -r -p.
die () # write error to stderr and exit
{
@ -51,15 +50,16 @@ cd ../
usage ()
{
cat 1>&2 <<EOF
Usage: ${PN} [-b] [-e emacs] [-n nmin] [-p] [-t] [-- make-flags]
Usage: ${PN} [-b] [-e emacs] [-n nmin] [-p] [-r] [-t] [-- make-flags]
Merge the Emacs release branch to master.
Passes any non-option args to make (eg -- -j2).
Options:
-e: Emacs executable to use for the initial merge (default $emacs)
-n: Minimum number of commits to try merging (default $nmin)
-n: minimum number of commits to try merging (default $nmin)
-b: try to build after merging
-t: try to check after building
-p: if merge, build, check all succeed, push when finished (caution!)
-r: start by doing a hard reset (caution!) and pull
EOF
exit 1
}
@ -73,8 +73,9 @@ build=
test=
push=
quiet=
reset=
while getopts ":hbe:n:pqt" option ; do
while getopts ":hbe:n:pqrt" option ; do
case $option in
(h) usage ;;
@ -88,6 +89,8 @@ while getopts ":hbe:n:pqt" option ; do
(q) quiet=1 ;;
(r) reset=1 ;;
(t) test=1 ;;
(\?) die "Bad option -$OPTARG" ;;
@ -121,6 +124,15 @@ trap "rm -f $tempfile 2> /dev/null" EXIT
}
[ "$reset" ] && {
echo "Resetting..."
git reset --hard origin/master || die "reset error"
echo "Pulling..."
git pull --ff-only || die "pull error"
}
rev=$(git rev-parse HEAD)
[ $(git rev-parse @{u}) = $rev ] || die "Local state does not match origin"