1

automatically get machines to learn the secondary remote

This commit is contained in:
Evan Pratten 2023-11-19 16:21:47 -05:00
parent c7894bfa56
commit 68cb27acc9

View File

@ -10,6 +10,15 @@ if type -p git > /dev/null; then
if [ -d "$EWCONFIG_ROOT/.git" ]; then
echo "Syncing git submodules..."
git submodule update --init --recursive
# Make sure that the `ewp` upstream exists
if ! git remote | grep -q ewp; then
echo "Adding secondary git remote"
git remote add ewp git://git.ewpratten.com/ewconfig
git remote set-url --push ewp ssh://ewpratten@git.ewpratten.com:/srv/git/ewconfig
echo "Remotes are:"
git remote -v
fi
fi
fi