Last active
January 20, 2023 14:30
-
-
Save MathiasReker/0a3089e5ec2d280be8b92cc6e392f57e to your computer and use it in GitHub Desktop.
~/.gitconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Mathias Reker | |
username = MathiasReker | |
signingkey = ~/.ssh/github_ed25519.pub | |
[init] | |
defaultBranch = dev | |
[gpg] | |
format = ssh | |
[commit] | |
gpgsign = true | |
[core] | |
editor = nano -w | |
whitespace = trailing-space,space-before-tab,cr-at-eol | |
sshCommand = ssh -i ~/.ssh/github_ed25519 | |
[color] | |
ui = auto | |
branch = auto | |
[color "diff"] | |
whitespace = green reverse | |
[color "grep"] | |
filename = normal dim | |
linenumber = normal dim | |
separator = normal dim | |
[color "status"] | |
untracked = yellow | |
[grep] | |
lineNumber = true | |
extendedRegexp = true | |
[log] | |
date = iso | |
abbrevCommit = true | |
[pull] | |
rebase = true | |
[rebase] | |
autosquash = true | |
[status] | |
branch = true | |
[fetch] | |
prune = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment