diff options
Diffstat (limited to 'Library/Homebrew/gitconfig')
| -rw-r--r-- | Library/Homebrew/gitconfig/.gitconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Homebrew/gitconfig/.gitconfig b/Library/Homebrew/gitconfig/.gitconfig new file mode 100644 index 000000000..2f68bde0d --- /dev/null +++ b/Library/Homebrew/gitconfig/.gitconfig @@ -0,0 +1,14 @@ +[user] + # Name used in commit messages. + name = Homebrew + # Email used in commit messages. + email = git@brew.sh +[fetch] + # Always prune when fetching (and pulling). + prune = 1 +[core] + # Don't prompt for commit messages for merge commits. + mergeoptions = --no-edit +[credential] + # Use macOS Keychain to store HTTP passwords. + helper = osxkeychain |
