- Standard GitExtensions configuration including: - SourceCodePro for diff font - Max 50 characters for first line of commit - Max 72 characters on subsequent lines - 2nd line of commit must be empty - Show repository status in browse dialog (# of changes in toolbar) - Show current working dir changes in revision graph - Use FileSystemWatcher to check if index is changed - Show stash count on status bar in browse window
10 lines
269 B
PowerShell
10 lines
269 B
PowerShell
$package = 'EthanBrown.GitExtensionsConfiguration'
|
|
|
|
try {
|
|
Write-Host "Configure settings from the Git Extensions menu (Settings -> Settings) manually"
|
|
Write-ChocolateySuccess $package
|
|
} catch {
|
|
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
|
throw
|
|
}
|