screenshot of my terminal shoing that `git clone self:reponame` succeed because I set `self:` as alias to `git@github.com:boltlessengineer/`
TIL: you can create url shortcuts in #gitconfig
In command line:
```
git config --global url."https://github.com/".insteadOf "gh:"
```
This also works with other commands like `git remote`
#git