jenkinsに問題があり、「git」を設定すると、次のエラーが表示されます。
Failed to connect to repository : Command "git ls-remote -h https://person@bitbucket.org/person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: fatal: Authentication failed
私はsshでテストしました:
git@bitbucket.org:person/projectmarket.git
これはエラーです:
Failed to connect to repository : Command "git ls-remote -h git@bitbucket.org:person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: Host key verification failed.
fatal: The remote end hung up unexpectedly
これらの手順も「SSHキー」で実行しました。
Jenkinsでログイン
sudo su jenkins
githubキーをJenkins.sshフォルダーにコピーします
cp ~/.ssh/id_rsa_github* /var/lib/jenkins/.ssh/
キーの名前を変更します
mv id_rsa_github id_rsa
mv id_rsa_github.pub id_rsa.pub
しかし、 jenkinsではまだgitリポジトリが機能していません。
助けてくれてありがとう!