add some debugging messages to update_remotes

This commit is contained in:
2023-07-26 22:04:19 -06:00
parent 87e5f80adb
commit a7534123f0

View File

@ -14,6 +14,10 @@ for repo_dir in "$src_directory"/*/; do
# Change into the repository directory
cd "$repo_dir" || continue
echo "Entered $repo_dir"
git remote -v
# Get the remote URL for the 'origin' remote
old_url=$(git remote get-url origin)