Git clone using SSH always require password
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
A user creates a test repo, with public key and SSH enabled, but
$ git clone git@192.168.99.100:7999:repo1
Cloning into 'repo1'...
git@192.168.99.100's password:
A password authentication is required and cloning is not possible.
Cause
The address the user is trying to clone is different to what the application expects.
As written on Enabling SSH access to Git repositories in Bitbucket Server, the SSH URL should be similar to:
ssh://git@<SSH_BASE_URL>/<projectname>/<reponame>.git
Resolution
The correct SSH URL that you should be using for a git clone operation should be available through the Bitbucket server UI when you browse through the repo, click on ... and then Clone:
If you are doing that correctly, please review Set up SSH for Git.