Created
September 12, 2024 07:32
-
-
Save patrislav1/7f273f86e4c4ed16baf73d22fc381461 to your computer and use it in GitHub Desktop.
git remote https to ssh
This file contains 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
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