...
Instructions : https://www.atlassian.com/git/tutorials/git-ssh
Copy SSH Key public:
in PowerShell (Windows Terminal)
Code Block |
---|
cat $HOME\.ssh\id_rsa.pub | clip |
or in Git Bash:
Code Block |
---|
cat $HOME/.ssh/id_ed25519.pub | clip |
Upload public SSH Key to Bitbucket:
- At bitbucket Bitbucket GUI, select your avatar (Your profile and settings) from the navigation bar at the top of the screen and select Manage Account.
- Under Account, select SSH Keys .or go to this link right away Your Bitbucket SSH Keys
- Select Add public key and paste your public key.
...