Android Studio - Push failed: fatal: Could not read from remote repository

GitIntellij IdeaAndroid StudioBitbucket

Git Problem Overview


I have a git project at Android Studio and a remote at BitBucket and I changed it to use SSH instead of HTTPS. I can make everything work using Atlassian's SourceTree, but in Android Studio every time I try to push the project it says

>Push failed: fatal: Could not read from remote repository.

Does anyone have a clue about what could be happening?

Git Solutions


Solution 1 - Git

This is probably an Intellij problem. Your key are managed natively by ssh, and Intellij has it's own ssh program.

Go to the settings, search git->ssh executable then choose native

As seen here : https://stackoverflow.com/questions/27566999/git-with-intellij-idea-could-not-read-from-remote-repository

Solution 2 - Git

Go to Settings > Version Control > Git. Make sure SSH executable is set to “Native.”

If it's already set, switch back to “Built-in,” apply it, and then again switch back to “Native".

enter image description here

Solution 3 - Git

There is two ways for Git SSH verification in Android Studio or IntelliJ, changing via: settings - Version Control - Git - SSH excuteable - "Built-in" or "Native"

  1. Built-in : means using ssh key pair built in Git for authentication. you can generate it via
    ssh-keygen -t rsa
    the default saved path is "~/.ssh/id_rsa" and "~/.ssh/id_rsa.pub". You should add the Public key in your BitBucket account. the path like : manage account - SSH keys - add keys
  2. Native : means using the ssh pair generated by the native repository hosting service, such as BitBucket or GitHub, which is often auto-add in the service account. For example in GitHub. It generated a pair of SSH key, "/.ssh/github_rsa.pub" and "/.ssh/github_rsa" and the Public key has been auto-added in my account via GitHub GUI maybe. So change the SSH executable to "Native" could be a simple way.

Anyway, you can use the both way after you add the correct Public key in you acoount in repository hosting service.

Solution 4 - Git

Despite my SSH-executable was set to Native I was getting that error because I have set password for SSH key file.

I haven't found the way how to specify password in Android studio but there is another solution, you can remove password which can be done with $ ssh-keygen -p. Then just confirm file location, enter your old password and leave new password blank.

Taken from How do I remove the passphrase for the SSH key without having to create a new key?

Solution 5 - Git

Another solution that helped me was "Use credential helper".

Android - Settings

Solution 6 - Git

I got the same issue. Turns out it matters how you run Android Studio. If you run it with normal privileges from terminal or sth, it cannot read local files that it has to in order to push repository.

Solution might just be to restart Android Studio with more privileges than it currently has.

Solution 7 - Git

Go to github.com and open your repository and copy USE HTTPS url Go to your Android project directory. In the .git folder search for config file.

IN the config file change url which you copied from github.com (use https) with the previous url. save config file and push again. This worked for me.

Solution 8 - Git

I had a similar problem in Android Studio 3.1

I changed Preferences > Version Control > Git > SSH executable from Built-in to Native as suggested here but it didn't help.

Then I upgraded Android Studio to 3.2 and switched back to Built-in. It fixed the issue in my case.

Solution 9 - Git

Got the issue after switching to Android Studio 3.6 when under the hood it was bumped to IDEA 2019

In my case below solution worked out of the box:

  1. Help - Find Action - Registry...
  2. Find git.use.builtin.ssh and enable it

Solution 10 - Git

What resolved this issue for me was going into Settings > Version Control > Git and checking "Use credential helper". I had recently downloaded the canary version of Android Studio and opted to not migrate my settings so this little setting which is checked on my release version was no longer checked on the canary version.

Solution 11 - Git

I ran across this myself, and found the existing answers were a bit incomplete.

tl;dr: Switching Android Studio/IntelliJ's SSH client from built-in to native may resolve the issue for you (it did for me).

Android Studio (effectively a specialized IntelliJ IDEA) comes with its own built-in SSH client, but allows you to switch to native (platform / OS dependent) if you prefer. You can change this by opening your Android Studio options, search for 'git', and choose 'native' in the SSH executable dropdown.

In my case, I was unable to push to BitBucket through Android Studio, but git push worked just fine. Switching to native (OSX SSH, in my case) resolved the issue - now I can push to BitBucket from Android Studio.

Other answers touched on the subject, but there appears to have been some mixup between SSH executables and the keys that they use.

Per Android Studio help under SSH Executable:

  • Built-in: select this option to use the implementation provided by IntelliJ IDEA.
  • Native: select this option to use native implementation.

Solution 12 - Git

I have met this problem, and finally I have solved it. And there are two important points for setting: In the android studio: File-Settings-GitHub: not to choose "Clone git repositories using ssh" In the android studio: File-Settings-Git: Choose "Built-in" for "SSH executable"

and for the SSH that I already have in the account of GitHub, is the one that I have in the android studio, I forget how to find the SSH in the android studio, But you can find it by the other way

Solution 13 - Git

If changing Preferences > Version Control > Git > SSH executable from Built-in to Native is not working then pls try with unchecking the Preferences > Version Control > GitHub>clone git repositories using ssh CHECK IT

Solution 14 - Git

In my case it works at first time but later same error got encountered so i just pushed through terminal

git push -u origin <your branch name>

it will asks for password enter it note i am using bitbucket

Solution 15 - Git

Regenerate your public ssh key and add it to your git hub repository.

ssh-keygen -t rsa

It worked in my case.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMichel FeinsteinView Question on Stackoverflow
Solution 1 - GitNicolas ZozolView Answer on Stackoverflow
Solution 2 - GitJohnnyView Answer on Stackoverflow
Solution 3 - GitJoe WangView Answer on Stackoverflow
Solution 4 - GitRoman NazarevychView Answer on Stackoverflow
Solution 5 - GitFrantišek ČernýView Answer on Stackoverflow
Solution 6 - GitmdzekoView Answer on Stackoverflow
Solution 7 - GittaimoorAshfaqView Answer on Stackoverflow
Solution 8 - GitAlexander PoleschukView Answer on Stackoverflow
Solution 9 - GitSILINIKView Answer on Stackoverflow
Solution 10 - GitMatthew BatesView Answer on Stackoverflow
Solution 11 - GitClay HView Answer on Stackoverflow
Solution 12 - GitEXEEEView Answer on Stackoverflow
Solution 13 - GitAtul BahugunaView Answer on Stackoverflow
Solution 14 - Gitmanu mathewView Answer on Stackoverflow
Solution 15 - GitkidView Answer on Stackoverflow