mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
37 lines
702 B
JSON
37 lines
702 B
JSON
{
|
|
"name": "WSL - Sudo - Git",
|
|
"cmd": "wsl sudo 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"
|
|
]
|
|
}
|
|
]
|
|
}
|