Git clone using SSH always require password
プラットフォームについて: サーバーと Data Center のみ。この記事は、サーバーおよび Data Center プラットフォームのアトラシアン製品にのみ適用されます。
問題
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.
原因
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
ソリューション
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.