To check your existing SSH public key in Windows, you can follow these steps:
Check Existing SSH Public Key in Windows (PowerShell, for Bitbucket use)
1.Open PowerShell.
2.Navigate to your SSH key directory (replace YourUsername if needed):
cd $env:USERPROFILE\.ssh
3.Display your public key:
Get-Content id_rsa.pub
4.Note: If id_rsa.pub does not exist, generate a new key:
ssh-keygen
Top comments (0)