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)
Open PowerShell
Navigate to your SSH key directory (replace YourUsername if needed):
cd $env:USERPROFILE\.ssh
- Display your public key:
Get-Content id_rsa.pub
- Note: If id_rsa.pub does not exist, generate a new key:
ssh-keygen
Top comments (0)