mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-07 16:38:30 -04:00
13 lines
373 B
Bash
13 lines
373 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# this copes with moving origin remote to a new git organisation
|
||
|
# we run it 3 times due to the poor handling of recursion
|
||
|
git submodule update --recursive --force --init
|
||
|
git submodule sync --recursive
|
||
|
|
||
|
git submodule update --recursive --force --init
|
||
|
git submodule sync --recursive
|
||
|
|
||
|
git submodule update --recursive --force --init
|
||
|
git submodule sync --recursive
|