Implementing GitHub into IntelliJ version control?
Answered
So I recently have implemented GitHub into my IntelliJ and it seems to connect and everything. Makes the specified project on GitHub too, however it doesn't push any of the files. I have already changed "Built-In" and "Native" with no luck. I really would love to fix this. Thanks so much for listening! Here is what happens when I try to push the commit https://i.gyazo.com/ccd339f87c59658f2e37b202d96dfa0f.gif 
The error is:
Failed with error: error: cannot spawn ssh: No such file or directory
fatal: unable to fork
Please sign in to leave a comment.
make sure that your connection to git is not blocked by a firewall
While the error might be caused by missing ssh executable (e.g. it is not on the path and cannot be accessed by git), since the error is the same in case of built-in SSH, most likely it is firewall or antivirus blocking the client.
Firewall on the lowest setting now. Tried with "Native" and still got the same error. Tried with "Built-In" and got a new error when pushing
https://i.gyazo.com/0b83c347d02a1c50907d736e89870ed8.gif
https://i.gyazo.com/b742c16008936831bab586556da5597b.png
I really want to get this up and running. Thanks for all the help and replies so far!
This error most likely happens because SSH-client cannot locate the neede SSH-key. Make sure you have your keys in place and they are called id_rsa/id_rsa.pub, otherwise setup .ssh/config to specify keys to use
How can I access these keys and check them within the Git bash? What should they be set to also?
Please refer to https://help.github.com/articles/connecting-to-github-with-ssh/
Fixed it following this: http://inchoo.net/dev-talk/how-to-generate-ssh-keys-for-git-authorization/
Thanks so much for all your help!