ProxySwitcher/configs/wsl_user_git.json

37 lines
697 B
JSON
Raw Permalink Normal View History

{
"name": "WSL - User - Git",
"cmd": "wsl git",
"set": [
{
"args": [
"config",
"--global",
"http.proxy"
]
}, {
"args": [
"config",
"--global",
"https.proxy"
]
}
],
"unset": [
{
"args": [
"config",
"--global",
"--unset",
"http.proxy"
]
}, {
"args": [
"config",
"--global",
"--unset",
"https.proxy"
]
}
]
}