EthanBrown.GitExtensionsConfiguration 0.0.1

- 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
This commit is contained in:
Iristyle
2013-03-15 09:04:11 -04:00
parent 032d197bf6
commit 0015d665bf
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
$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
}