From a7534123f0f37bd060b3f166a93a49df622f30f0 Mon Sep 17 00:00:00 2001 From: Mason Payne Date: Wed, 26 Jul 2023 22:04:19 -0600 Subject: [PATCH] add some debugging messages to update_remotes --- update_git_remotes.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/update_git_remotes.sh b/update_git_remotes.sh index 5dde2de..15d76a4 100644 --- a/update_git_remotes.sh +++ b/update_git_remotes.sh @@ -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)