I'm working on a school project via an IDE that is new for me: IntellIJ.
In order to submit my project (via git) I created a Git repository, added the correct remote with its password and tried to push my work on the master branch (after adding / committing said work with success).
At first I received the following error message:
Push failed: Failed with error: fatal: Could not read from remote repository.
I then went into my settings and set my SSH executable to Native to try and solve this problem. But it did not work, and I can't seem to push my project on this remote even though the password I inputed was correct.
Here is my .git/config
file:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = git@git.epitech.eu:/kade_c/Java_jcoinche_2016
fetch = +refs/heads/*:refs/remotes/origin/*
Where did I go wrong?