blob: 79299e5b437b721b69a9946172e8c935313e90ab (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
# This is cool:
# https://medium.com/@porteneuve/mastering-git-submodules-34c65e940407
git pull "$@" \
&& git submodule sync --recursive \
&& git submodule update --init --recursive
|