obsidian/01 Projects/bitbacket ssh setup.md
Vadym Samoilenko 7251967b64 Initial vault commit: second brain for Oliver projects
- 35 project notes (PARA structure, 1:1 disk mapping)
- CLAUDE.md session protocol
- Projects Index MOC
- Templates: Daily, Meeting, Project
- 03 Resources, 02 Areas structure
- .gitignore excludes credentials, workspace files, smart-env

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-14 18:44:21 +01:00

534 B
Raw Blame History

1. Create a key

ssh-keygen -t ed25519 -C vadymsamoilenko@oliver,agency -f ~/.ssh/id_bitbucket

2. Display the public key (copy it)

cat ~/.ssh/id_bitbucket.pub

3. Add the key to Bitbucket via your browser

4. Create an SSH config

cat > ~/.ssh/config << "EOF" Host bitbucket.org HostName bitbucket.org User git IdentityFile ~/.ssh/id_bitbucket IdentitiesOnly yes EOF

5. Set permissions

chmod 700 ~/.ssh

chmod 600 ~/.ssh/id_bitbucket

chmod 600 ~/.ssh/config

6. Verify

ssh -T git@bitbucket.org