Sunday, December 28, 2014

git svn clone command fails on windows


>PROBLEM

The following command is executed:

    git svn clone file://D:/work/dev/java/lab/junit

It returns:   

    C:\Program Files (x86)\Git\bin\perl.exe: *** unable to remap C:\Program Files (x86)\Git\bin\libsvn_wc-1-0.dll to same address as parent -- 0x6F1C0000






 The same problem happened on Git's bash and Cygwin console.



>SOLUTION

I updated the cygwin´s perl and git libraries to the last one by this time, since It was not possible to update Git, because the last version was already installed (Git-1.9.5-preview20141217.exe),
After the update, a new attempt using Cygwin succeeded.




The clue came from:

https://code.google.com/p/conemu-maximus5/wiki/AppHelp


eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...