Files
zulip/tools/deploy-branch
Anders Kaseorg 9a17d70cd7 shfmt: Reformat shell scripts with shfmt.
https://github.com/mvdan/sh

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit dfaea9df65)
2020-10-28 17:12:50 -07:00

39 lines
973 B
Bash
Executable File

#!/usr/bin/env bash
function error_out() {
echo -en '\e[0;31m'
echo "$1"
echo -en '\e[0m'
exit 1
}
status=$(git status --porcelain | grep -v '^??')
[ -n "$status" ] && error_out "Working directory or index not clean"
old_ref=$(git rev-list --max-count=1 HEAD)
branch=$1
branch_ref=$(git rev-list --max-count=1 "$branch") || error_out "Unknown branch: $branch"
if [ "$old_ref" == "$branch_ref" ]; then
new_ref=master
else
if ref_name=$(git describe --all --exact "$old_ref"); then
new_ref=$(echo "$ref_name" | perl -pe 's{^(heads|remotes)/}{}')
else
new_ref=$old_ref
fi
fi
[ -z "$branch" ] && error_out "You must specify a branch name to deploy"
git fetch -p
git rebase origin/master "$branch" || error_out "Rebase onto origin/master failed"
git push . HEAD:master
git push origin master || error_out "Push of master to origin/master failed"
git checkout "$new_ref"
git branch -D "$branch"
git push origin ":$branch"