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.
12 lines
373 B
12 lines
373 B
#!/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
|
|
|