- Move SSH Servers, Deploy to Server, bitbacket ssh setup, setup redirect url → 03 Resources/Infrastructure/ - Move Claude code.md, how to.md, how to_en.md → 03 Resources/SOPs/ - Move Заметки по работе с терминалом.md → 03 Resources/SOPs/ - Move linux_docker_apache_vim_cheatsheet.html, Pasted image → 03 Resources/ - Delete empty Untitled.canvas and Untitled.base - Create 02 Areas/Work Tasks.md (Dataview task dashboard) - Create 03 Resources/Infrastructure Index.md (hub note) - Update Projects Index.md infrastructure links Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
534 B
534 B
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