tools: add a script to pull from upstream repos into the subtrees

master
alex 2023-06-17 10:26:47 +02:00
parent 5aa47b29cc
commit 46f165b3e3
1 changed files with 26 additions and 0 deletions

26
tools/pull-upstream.sh Executable file
View File

@ -0,0 +1,26 @@
#!/bin/sh
REPO="${1}"
REF="${2}"
DIR=""
usage() {
printf "usage: $0 <server|webapp> <ref>\n" 1>&2
printf "ref: main, tag, branch or commit hash\n" 1>&2
exit 1
}
case "$REPO" in
server)
REPO="https://github.com/etesync/server.git"
DIR="server"
;;
webapp)
REPO="https://github.com/etesync/etesync-web.git"
DIR="webapp"
;;
*) usage;;
esac
[ -z "${REF}" ] && usage
cd $(dirname $0)/..
exec git subtree pull -P "${DIR}" "${REPO}" "${REF}"