mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-20 13:12:50 +08:00
6 lines
297 B
PowerShell
6 lines
297 B
PowerShell
$refs = ('https://github.com/nsnail/ns-ext.git', 'https://github.com/nsnail/Furion.git', 'https://github.com/nsnail/FreeSql.git')
|
|
|
|
foreach ($item in $refs)
|
|
{
|
|
git clone --depth 1 --config "http.proxy=http://127.0.0.1:1081" $item "./refs/$( [regex]::Match($item, '/([^/]+)\.git$').Groups[1] )"
|
|
} |