Monday, November 2, 2015

svn: warning: W155010: '/cygdrive ...


>PROBLEM

svn fails throwing the folling message:
  svn: warning: W155010: '/cygdrive ...




>SOLUTION

The cygwin's svn command is called instead a windows command, like Tortoise, etc.
Correct the Path envvar.
Set the windows' cmd path (i.e. Tortoise) before cygwin's path.

>ENV

windows7

No comments:

Post a Comment

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...