mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-14 03:03:42 +02:00
feat(ssh): add ssh config tracking
This commit is contained in:
parent
8e670ba64a
commit
663ad7dd96
2 changed files with 6 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,11 +1,13 @@
|
||||||
**
|
**
|
||||||
!.config/
|
!.config/
|
||||||
!.local/
|
!.local/
|
||||||
|
!.ssh/
|
||||||
|
|
||||||
# Include configs
|
# Include configs
|
||||||
!.nanorc
|
!.nanorc
|
||||||
!.tmux.conf
|
!.tmux.conf
|
||||||
!.gitconfig
|
!.gitconfig
|
||||||
|
!.ssh/config
|
||||||
!.config/git/
|
!.config/git/
|
||||||
!.config/git/**
|
!.config/git/**
|
||||||
!.bash_aliases
|
!.bash_aliases
|
||||||
|
|
4
.ssh/config
Normal file
4
.ssh/config
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Host local.vlw.se
|
||||||
|
Port 2222
|
||||||
|
StrictHostKeyChecking no
|
||||||
|
UserKnownHostsFile /dev/null
|
Loading…
Add table
Reference in a new issue