Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Ochmann c2820818b6 added function for looking up used port on macos 3 years ago
Michael Ochmann 0431f395aa added ssh config for gitlab.com 3 years ago
  1. 5
      .bashrc
  2. 5
      .ssh/config

@ -244,6 +244,11 @@ sshttps() {
sshttp $1 $2 443 sshttp $1 $2 443
} }
whichport() {
sudo lsof -i -P | grep LISTEN | grep ":$1"
}
# ENVIRONMENT # ENVIRONMENT
NPM_PACKAGES="${HOME}/.npm-packages" NPM_PACKAGES="${HOME}/.npm-packages"

@ -35,3 +35,8 @@ Host miko
HostName giacobini.uberspace.de HostName giacobini.uberspace.de
ServerAliveInterval 30 ServerAliveInterval 30
ServerAliveCountMax 3 ServerAliveCountMax 3
Host gitlab.com
User git
HostName gitlab.com
IdentityFile ~/.ssh/massivedynamic_rsa

Loading…
Cancel
Save