Bitbucket access keys can only be used for read-only?

后端 未结 2 954
梦谈多话
梦谈多话 2020-12-19 21:51

First time using bitbucket, trying to make a first push of my local project to bitbucket.

I managed to create a repository with no issues. After I created a new SSH

相关标签:
2条回答
  • 2020-12-19 22:33

    I managed to finally make a push through git shell, by creating a new key where you specified (Acc->Security->SSH Keys); still does not seem to want to work with SourceTree

    Check if SourceTree is configured to use the embedded git or the system Git (the latter being the one you have installed. And make sure your SourceTree runs with your account.

    The OP Marin adds in the comments:

    I managed to do all that in the end after setting a new ssh key for the account not the project and adding it to Pagent.

    I managed to sort the issue quite quickly after the initial commit and push through Git Shell, I just checked out the repository using SourceTree and it worked (also my account was already linked to SourceTree)

    0 讨论(0)
  • 2020-12-19 22:43

    Try checking if your ssh-agent is working:

    ssh-add -l

    If you get error just do:

    eval `ssh-agent -s` ssh-add ssh-add -l

    0 讨论(0)
提交回复
热议问题