Git clone Error: RPC failed; result=56, HTTP code = 200

前端 未结 4 576
星月不相逢
星月不相逢 2020-12-11 02:36

I am trying to clone a (private) remote repository but I am getting following error:

 remote: Counting objects: 11410, done
 remote: Finding sources: 100% (1         


        
4条回答
  •  时光取名叫无心
    2020-12-11 03:14

    I solved it by using SSH to perform the clone. Solution found here.

    To use SSH with Bitbucket, you create an SSH identity. An identity consists of a private and a public key which together are a key pair. The private key resides on your local computer and the public you upload to your Bitbucket account. Once you upload a public key to your account, you can use SSH to connect with repositories you own and repositories owned by others, provided those other owners give your account permissions. By setting up SSH between your local system and the Bitbucket server, your system uses the key pair to automate authentication; you won't need to enter your password each time you interact with your Bitbucket repository.

    Here's how to Setup SSH for Git.

提交回复
热议问题