Skip to content

Instantly share code, notes, and snippets.

@pvspain
Last active August 10, 2023 23:55
Show Gist options
  • Save pvspain/35f8e605834eb775d76cf93b7a7fb9ed to your computer and use it in GitHub Desktop.
Save pvspain/35f8e605834eb775d76cf93b7a7fb9ed to your computer and use it in GitHub Desktop.
SSH config entry to connect to ssh-based Bitbucket Git repo URLs, when only port 443 (HTTPS) connections are available.
# Typically located at ~/.ssh/config
Host bitbucket.org
HostName altssh.bitbucket.org
Port 443
User git
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment