Files
ChocolateyPackages/EthanBrown.GitConfiguration/tools/chocolateyUninstall.ps1
Iristyle 3e9c281e7b EthanBrown.GitConfiguration
- A number of "standard" Git config options on Win
    core.autocrlf       true
    core.safecrlf       false
    rebase.autosquash   true
    help.format         html
    push.default        simple
    core.editor         Notepad++

    diff.tool           DiffMerge
    diff.guitool        DiffMerge
    merge.tool          DiffMerge
2013-03-12 18:05:22 -04:00

10 lines
247 B
PowerShell

$package = 'EthanBrown.GitConfiguration'
try {
Write-Host "Manually edit $ENV:USERPROFILE\.gitconfig to revert package changes"
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}