Threadscope's gettext.sh file interferes with git on Windows

前端 未结 1 1567
天涯浪人
天涯浪人 2020-11-27 08:44

When I run git commands, I\'m noticing I get strange messages wrt a totally unrelated program, namely threadscope, which I use for obtaining information on my parallel Haske

相关标签:
1条回答
  • 2020-11-27 09:06

    Try setting (for testing) a simplified PATH in a CMD session

    set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
    set GH=C:\path\to\git
    set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
    
    set PATH=%PATH%;/path/to/ThreadScope/bin
    

    Meaning: you set Git first, then ThreadScope in the PATH: see if both are running better in that new context.

    0 讨论(0)
提交回复
热议问题