Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Your Bitbucket SSH Keys

...

Instructions : https://www.atlassian.com/git/tutorials/git-ssh 


Copy SSH Key public:

in PowerShell (Windows Terminal)

Code Block
cat $home$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:

  1. 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.
  2. Under Account, select SSH Keys or go to this link right away Your Bitbucket SSH Keys.
  3. Select Add public key and paste your public key.

...