- 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
10 lines
247 B
PowerShell
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
|
|
}
|