From 7e2b7664d087f94666f340f7502ed8d857ad79bf Mon Sep 17 00:00:00 2001 From: burnettk Date: Thu, 20 Oct 2022 07:19:18 -0400 Subject: [PATCH] new script --- bin/pull_in_changes_from_outside_repos | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 bin/pull_in_changes_from_outside_repos diff --git a/bin/pull_in_changes_from_outside_repos b/bin/pull_in_changes_from_outside_repos new file mode 100755 index 000000000..32e302964 --- /dev/null +++ b/bin/pull_in_changes_from_outside_repos @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +function error_handler() { + >&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}." + exit "$2" +} +trap 'error_handler ${LINENO} $?' ERR +set -o errtrace -o errexit -o nounset -o pipefail + +# HELP: git pull, pull subtrees, and push back to spiff-arena origin + +if has_local_git_changes; then + >&2 echo "ERROR: you have local git changes. Please commit or stash them before running this script." + exit 1 +fi + +gp +./bin/pull-subtrees +gpush