Reputation: 43656
I have a git repository and I want to clone it, but I have never done this using GitHub and RubyMine.
This is what I have till now:
But when I copy the SSH clone URL in the environment I get the following error:
Can anyone assist me with the steps of cloning such repository?
Upvotes: 1
Views: 650
Reputation: 402375
Path to Git executable
is not your GitHub URL, you need to specify the path to the command line git client that will be used to perform commands:
/usr/bin/git
See also this document.
Upvotes: 2