initial commit
This commit is contained in:
3
docs/git/index.md
Normal file
3
docs/git/index.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Git Snippets and Musings
|
||||
|
||||
#### [SSH Config](./ssh-config.md)
|
14
docs/git/ssh-config.md
Normal file
14
docs/git/ssh-config.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Git SSH Config
|
||||
|
||||
When using SSH to connect to a remote repository, you can configure your SSH client to use a specific key for a specific host. This is useful when you have multiple keys and want to use a specific key for a specific host.
|
||||
|
||||
Sample configuration is below
|
||||
|
||||
```bash
|
||||
# ~/.ssh/config
|
||||
Host github.com
|
||||
HostName github.com
|
||||
User git
|
||||
IdentityFile ~/.ssh/my-github-key
|
||||
PreferredAuthentications publickey
|
||||
```
|
Reference in New Issue
Block a user