Hi there,
I have suddenly been unable to push changes to my Bitbucket repo. I get the following error:
```
git push origin dev
The requested repository either does not exist or you do not have access. If you believe this repository exists and you have access, make sure you're authenticated.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
```
The repository exists and I am an admin on the repo.
I last successfully pushed to it on September 1st.
The correct SSH key is in my ssh agent. The same key that is added to my Bitbucket account.
`git config user.name` returns the correct Bitbucket user name.
`git remote -v` returns the correct SSH origin.
SSH test connection command returns successful.
```
ssh -T git@bitbucket.org
authenticated via ssh key.
You can use git to connect to Bitbucket. Shell access is disabled
```
I have restarted my IDE and terminal multiple times to try and fix it but I still get this error.
I have also killed my ssh-agent and restarted it, adding only the key I use for this repo. It still isn't working.
Is there anything else I can check to see what is wrong?
I figured it out. Somehow the core.sshCommand config that held the SSH key that is used with this repo got wiped from the repo config. I don't know how that happened.
Running this command returned no output:
```
git config core.sshCommand
```
So I added the key back to the repo, setting the SSH config file option to /dev/null since I don't have any GIT related host entries in my ~/.ssh/config file.
```
git config core.sshCommand "ssh -i ~/.ssh/the-bitbucket-key -F /dev/null"
```
After that I was able to successfully push and pull again.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.