Monday, January 18, 2021

git: 'credential-cache' is not a git command. See 'git --help'.

 

>PROBLEM


git: 'credential-cache' is not a git command. See 'git --help'.


>SOLUTION


Edit .git\config fille and remove:


[credential]

helper = cache







>ENV

Windows 10


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