Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Perl conflict when trying to use git svn

by Corion (Patriarch)
on Jun 18, 2020 at 16:30 UTC ( [id://11118237]=note: print w/replies, xml ) Need Help??


in reply to Perl conflict when trying to use git svn

git on Windows comes with its own Perl installation.

Depending on how you installed git, the installer put the git perl in the path before the ActiveState Perl. Inspect your environment:

echo %PATH%

If you don't want ActiveState Perl to interfere with the git Perl, remove ActiveState Perl from the path when you run git. Changing the PATH environment variable works for all console windows separately, so in one console window, you can move git to the front of the path:

echo %PATH% path C:\Programs\Git\bin;C:\Programs\Git\cmd;%PATH%

... or alternatively, remove the path entries referencing ActiveState Perl.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11118237]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 19:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found