Answer by Smart Coder for git with IntelliJ IDEA: Could not read from remote...
I changed git path and it worked.
View ArticleAnswer by Marlon for git with IntelliJ IDEA: Could not read from remote...
When adding the remote URL change it from this https://username@bitbucket.org/usernameowner/project-name.git to this https://bitbucket.org/usernameowner/project-name.git
View ArticleAnswer by Volodymyr Khodonovych for git with IntelliJ IDEA: Could not read...
I've resolved this by adding my SSH private key to the ssh-agent in the command: $ ssh-add -K ~/.ssh/id_rsa And setting Settings --> Version Control --> Git, and then, in the SSH executable...
View ArticleAnswer by Alireza Alallah for git with IntelliJ IDEA: Could not read from...
I tried Native option but does not work for me, finally regenerate ssh key in old way and add -m option in ssh-keygen command. also IDEA works with build-in option as fine. ssh-keygen -m PEM -t rsa -b...
View ArticleAnswer by NullPointer for git with IntelliJ IDEA: Could not read from remote...
I had the same problem. Was using bitbucket and had trouble in pulling/updating the repository on Intellij. Tried changing to native and back to built in, but it was not working. Then realized that I...
View ArticleAnswer by user3231514 for git with IntelliJ IDEA: Could not read from remote...
I tried all solutions above (Native, changing url of VCS repository, updating Git, updating IDEA, invalidating Caches), but nothing helped me. Finally I found solution that works for me. SOLUTION: I...
View ArticleAnswer by Phoelix Sky for git with IntelliJ IDEA: Could not read from remote...
Nothing helped me. Then I saw that the name of the project on the computer is different from the name on the git repository. So I solved the problem.
View ArticleAnswer by Gaurav for git with IntelliJ IDEA: Could not read from remote...
Adding this answer since none of the answers worked for me. I had certificates issue - so following command did the trick. git config --global http.sslVerify false taken from...
View ArticleAnswer by Sugoi Reed for git with IntelliJ IDEA: Could not read from remote...
I Solved the issue simply by ensuring that I had the correct git SSH url without any trailing spaces: git@github.com:USERNAME/REPOSITORY.git
View ArticleAnswer by connexo for git with IntelliJ IDEA: Could not read from remote...
This fixed it for me (I am using SSH, not HTTPS, and the native git, not the built-in) on MacOS High Sierra (10.13.5)/IntelliJ IDEA 2018.4:
View ArticleAnswer by Sarvesh Athawale for git with IntelliJ IDEA: Could not read from...
Go to Settings->Git->Select Native in SSH executable dropdown. (If it is not selected) Copy HTTPS link from your Github repository. Go to VCS->Git->Remotes.. Edit the origin and Paste...
View ArticleAnswer by binithb for git with IntelliJ IDEA: Could not read from remote...
Check Idea proxy settings if you are trying to connect to cloud services like github or bitbucket. This can be done by looking for plugins to install or by checking for software updates in the help...
View ArticleAnswer by Viral Nakrani for git with IntelliJ IDEA: Could not read from...
The problem is solved in my pc. settings-->Version Control-->Git ,and then, In the SSH executable drop-down, select built-in option. and install git older version something like 2.14.2. Its works...
View ArticleAnswer by Mohideen bin Mohammed for git with IntelliJ IDEA: Could not read...
in pyCharm, file| v-->settings| v-->Version Control| v-->Git Here change SSH executable from Built-in into Native then press apply and close
View ArticleAnswer by SilverK for git with IntelliJ IDEA: Could not read from remote...
Ensure that you've changed the link to the git repository to the HTTPS option after you've selected "Native" in IntelliJ settings if SSH doesn't work.
View ArticleAnswer by Jenya Kirmiza for git with IntelliJ IDEA: Could not read from...
this helped me to fix current issue If you're using macOS Sierra 10.12.2 or later, you will need to modify your ~/.ssh/config file to automatically load keys into the ssh-agent and store passphrases in...
View ArticleAnswer by Ricardo for git with IntelliJ IDEA: Could not read from remote...
I had this issue with WebStorm recently (February/2018) and none of the (then) previous solutions worked for me. After spending some hours on troubleshooting and researching, I installed the 2018 EAP...
View ArticleAnswer by Szymon Stepniak for git with IntelliJ IDEA: Could not read from...
I started getting Could not read from remote repository error recently when working with my github repository. My specs: IntelliJ IDEA 2017.3.4 (Ultimate Edition) Settings -> Version Control ->...
View ArticleAnswer by Wilmer E. Henao for git with IntelliJ IDEA: Could not read from...
If all else fails just go to your terminal and type from your folder: git push origin master That's the way the Gods originally wanted it to be.
View ArticleAnswer by Steve Borland for git with IntelliJ IDEA: Could not read from...
I solved this issue by removing the password for the ssh key in PuTTY.
View Article