Files

6 lines
203 B
Bash
Raw Permalink Normal View History

#!/bin/sh
# Initialize and update git submodules to their latest remote commits.
if [ -f .gitmodules ]; then
git -c protocol.file.allow=always submodule update --init --force --remote --recursive
fi