mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-24 18:36:41 +07:00
8 lines
210 B
Markdown
8 lines
210 B
Markdown
Forces #git to use https even if remote url is #SSH. Useful for the networks with blocked #ssh protocol.
|
|
|
|
Put this inside your `~/.gitconfig`:
|
|
|
|
```c
|
|
[url "https://github.com"]
|
|
insteadOf = git://github.com
|
|
```
|