-
-
Save Yggdrasil/5f8f39a183b2762a4128f1daa17780a0 to your computer and use it in GitHub Desktop.
Shell script to bulk change git remote url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
directoryContainingAllRepos="" # directory containing all git repo's | |
oldGitRemoteServer="" # current remote server url for example gitlab.com | |
newGitRemoteServer="" # new remote server url for example git.example.com | |
cd $directoryContainingAllRepos | |
find * -maxdepth 0 -type d \( ! -name . \) -print | while read dir | |
do | |
cd $dir | |
if [ -d ".git" ] | |
then | |
remoteUrl1="$(git config --get remote.origin.url)" | |
# echo "${remoteUrl1}" | |
remoteUrl2=${remoteUrl1/$oldGitRemoteServer/$newGitRemoteServer} | |
remoteUrl3=${remoteUrl2/-module} | |
git remote set-url origin ${remoteUrl3} | |
fi | |
cd .. | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment