Files
Scoop/lib/git.ps1
Chawye Hsu fd5d2fec37 fix: force to add new main bucket (#3419)
* fix: force to add new main bucket

* fix(git): use internal get config function
2019-04-30 10:41:35 +02:00

53 lines
881 B
PowerShell

function git_proxy_cmd {
$proxy = get_config 'proxy'
$cmd = "git $($args | ForEach-Object { "$_ " })"
if($proxy -and $proxy -ne 'none') {
$cmd = "SET HTTPS_PROXY=$proxy&&SET HTTP_PROXY=$proxy&&$cmd"
}
& "$env:COMSPEC" /c $cmd
}
function git_clone {
git_proxy_cmd clone $args
}
function git_ls_remote {
git_proxy_cmd ls-remote $args
}
function git_checkout {
git_proxy_cmd checkout $args
}
function git_branch {
git_proxy_cmd branch $args
}
function git_pull {
git_proxy_cmd pull $args
}
function git_fetch {
git_proxy_cmd fetch $args
}
function git_log {
git_proxy_cmd --no-pager log $args
}
function git_checkout {
git_proxy_cmd checkout $args
}
function git_branch {
git_proxy_cmd branch $args
}
function git_config {
git_proxy_cmd config $args
}
function git_reset {
git_proxy_cmd reset $args
}