You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mymonero-core-cpp/bin/update_submodules

10 lines
486 B

#!/usr/bin/env bash
echo "🔁 git submodule update --init --recursive";
git submodule update --init --recursive
echo "🔁 git submodule foreach --recursive git fetch";
git submodule foreach --recursive git fetch
echo "🔁 git submodule foreach --recursive git checkout master";
git submodule foreach --recursive git checkout master
echo "🔁 git submodule foreach --recursive git pull --ff-only origin master";
git submodule foreach --recursive git pull --ff-only origin master