Lines Matching defs:Git
8 [string]$GitPath = "C:\Program Files\Git\bin\git.exe",
31 & $Git -c advice.detachedHead=false clone --quiet --depth=1 `
34 & $Git -C "${DIR}" show -s HEAD
37 # Find Git.
38 $Git = $(Get-Command git -ErrorAction Ignore | `
40 if ([string]::IsNullOrEmpty($Git)) {
41 $Git = $GitPath
43 if (-Not (Test-Path $Git)) {
44 throw "Unable to find Git at $Git"
88 Write-Host "Git: $Git"