Configuring IntelliJ IDEA and Git

I want to integrate my repo, from GitHub to IDEA 13 (Ultimate).

I installed github for windows. And clone my repo to a local folder.
But when I try (in IDEA) to use " Check out from Version Control", I have an error message

Executable is not specified

Of cos' in setup, I am successfully accessing my github account.

Ok, I install git from git -scm.com and set the path to the Git executable git.exe.
And now, when I click " Check out from Version Control", an error message appears:

Error while executing git --version. Exit code...

How can I fix this new error message.

+4
source share
1 answer

GitVersion.java#identifyVersion() ( GitVersionTest.java).

throw new ExecutionException("Errors while executing git --version. exitCode=" +
  result.getExitCode() +
  " errors: " + result.getStderr());

, , :

  • git.exe PATH,
  • IntelliJ IDEA, PATH.
+1

All Articles