Skip to content

Instantly share code, notes, and snippets.

@patrislav1
Created September 12, 2024 07:32
Show Gist options
  • Save patrislav1/7f273f86e4c4ed16baf73d22fc381461 to your computer and use it in GitHub Desktop.
Save patrislav1/7f273f86e4c4ed16baf73d22fc381461 to your computer and use it in GitHub Desktop.
git remote https to ssh
for remote in $(git remote); do
oldurl=$(git remote get-url $remote);
newurl=$(echo $oldurl | sed 's?^https://?git@?' | sed 's?/?:?').git;
echo $remote: $oldurl -\> $newurl;
git remote set-url $remote $newurl;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment