dotfiles/gitconfig/.gitconfig

42 lines
832 B
INI
Raw Normal View History

2022-09-13 13:37:45 +00:00
# Filename: $HOME/.gitconfig
# Purpose: config for git(1)
# Author: Jeffrey Serio <hyperreal@fedoraproject.org>
# License: GPL v3
##############################################################################
[format]
numbered = auto
[color]
branch = yes
diff = auto
pager = yes
status = auto
[color "branch"]
current = green
local = yellow
remote = cyan
[color "diff"]
meta = yellow
frag = magenta
old = red
new = green
[color "status"]
header = magenta
added = green
changed = yellow
untracked = cyan
2022-02-10 17:40:12 +00:00
[commit]
[core]
editor = emacs -nw
2022-02-10 17:40:12 +00:00
[init]
defaultBranch = main
[pull]
rebase = true
[user]
2022-07-07 16:32:27 +00:00
email = 23226432+hyperreal64@users.noreply.github.com
2022-02-10 17:40:12 +00:00
name = Jeffrey Serio
[global]
2022-09-13 13:37:45 +00:00
# vim:ft=gitconfig ai et sw=4 ts=4: