Не могу вытащить или подтолкнуть к репо с помощью Sourcetree - PullRequest
0 голосов
/ 12 декабря 2018

При попытке извлечь изменения из репозитория с использованием Sourcetree я получаю следующую ошибку:

git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags origin master:master
Pushing to git@bitbucket.org:doesnotmatter.git
repository access denied.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Completed with errors, see above.

Я проверил, что ключи ssh правильно настроены как в bitbucket, так и в sourcetree.Я проверил, что у меня есть доступ к хранилищу.

Что еще я могу проверить?

Спасибо.

Вот что я вижу, когда запускаю git remote show origin:enter image description here

$ git remote show origin
* remote origin
  Fetch URL: git@bitbucket.org:doesnotmatter.git
  Push  URL: git@bitbucket.org:doesnotmatter.git
  HEAD branch: master
  Remote branches:
    GAM-478 tracked
    master  tracked
  Local branch configured for 'git pull':
    master merges with remote master
  Local ref configured for 'git push':
    master pushes to master (fast-forwardable)

Вот что я вижу, когда запускаю ssh -T hg@bitbucket.org:

enter image description here

oobarbazanoo@LAPTOP-CQEVT11F MINGW64 /c/Projects/WebStorm/doesnotmatter (master)
$ ssh -T git@bitbucket.org
logged in as yrslvtrfmvdoesnotmatter.

You can use git or hg to connect to Bitbucket. Shell access is disabled.

Вот что я вижу после запуска git fetch origin: enter image description here (т.е. просто ничего).

...