Skip to content

Instantly share code, notes, and snippets.

@Kovrinic
Last active March 8, 2023 14:35
Embed
What would you like to do?
git global url insteadOf setup
# one or the other, NOT both
[url "https://github"]
insteadOf = git://github
# or
[url "git@github.com:"]
insteadOf = git://github

Replace git:// with https://

Rewrite any git:// urls to be https:// but, it won't touch sshurls (git@github.com:)

git config --global url."https://github".insteadOf git://github

or replace with ssh

Use ssh instead of https://

git config --global url."git@github.com:".insteadOf "https://github.com/"

sauce: https://gist.github.com/grawity/4392747 & @hansdg1

@frenchbeast
Copy link

Exactly what i was looking for thanks 👍

@tecnocat
Copy link

tecnocat commented Jan 9, 2023

It is possible to remove entries with credentials from command line scripts?

[url "https://user:token@repository.url.com"]
        insteadOf = https://repository.url.com

I tried git config --global --unset name <pattern> with no luck :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment