You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Set up SSH for Git on Windows: https://confluence.atlassian.com/bitbucket/set-up-an-ssh-key-728138079.html
The end result is this screenshot
------
------
This needs to be fixed if it's supposed to be official instruction.
I have the same problem, my public key is
---- BEGIN SSH2 PUBLIC KEY ----
Comment: "rsa-key-20201126"
AAAA data removed T7oQ==
---- END SSH2 PUBLIC KEY ----
I get "That SSH key is invalid."
What is saved to a file from Putty is different than what is in the window and what Bitbucket needs. It should be of this format.
ssh-rsa
AAAA data removed T7oQ==
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Make sure you copy all the characters in the .pub file, normally on Windows it adds a label at the end, that also needs to be included.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The ssh-keygen generates two files, id_rsa and id_rsa.pub. You want to copy the content in id_rsa.pub into your profile in Bitbucket. So in step 2 your command should look like this instead:
notepad ~/.ssh/id_rsa.pub
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.