5 lines
133 B
Bash
5 lines
133 B
Bash
|
#! /bin/sh
|
||
|
git submodule update --recursive --remote --init
|
||
|
git submodule -q foreach 'git checkout -q master && git pull'
|
||
|
git status
|