I'm trying to find a working .gitconfig setup that fulfills two 
requirements:

   - sslVerify must be set to false for internal servers or at least for 
   one specific server 
   - a proxy needs to be configured for external repositories (with 
   sslVerify set to true, of course). 

My current version gives me access problems when connecting to my internal 
repo. I guess that somehow that two last instructions are wrong.

[user]
    name = John Doe
    email = john....@company.com
[https]
    proxy = http://johndoe:password@1.2.3.4:6666
[http]
    proxy = http://johndoe:password@1.2.3.4:6666
[http "https://repo.company.com/";]
    sslVerify = false
[https "https://repo.company.com/";]
    sslVerify = false


What is the correct syntax for this case? I use Git 2.12.2.windows.2.

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to