Add merge_upstream.sh

This commit is contained in:
SpiritCroc 2020-10-10 09:33:52 +02:00
parent 1b273a9bf7
commit 56804965e5

15
merge_upstream.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
set -e
mydir="$(dirname "$(realpath "$0")")"
pushd "$mydir" > /dev/null
source ./merge_helpers.sh
forall_repos git fetch upstream
forall_repos git merge upstream/master
popd > /dev/null