dotfiles/git/.gitconfig

58 lines
1.6 KiB
INI
Raw Normal View History

2012-04-05 05:39:31 -04:00
[user]
2017-02-20 10:02:49 -05:00
email = atomaka@gmail.com
name = Andrew Tomaka
2018-05-30 09:14:30 -04:00
signingkey = 61209BF70A5B18BE
2013-04-29 02:16:39 -04:00
[github]
2017-02-20 10:02:49 -05:00
user = atomaka
2013-04-29 02:16:39 -04:00
[apply]
2017-02-20 10:02:49 -05:00
whitespace = fix
2013-04-29 02:16:39 -04:00
[alias]
fancy-graph = log --graph --decorate --pretty=oneline --abbrev-commit
2013-10-21 09:32:03 -04:00
hist = log --graph --pretty=format:'%Cred%h%Creset - %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
2013-08-05 22:07:01 -04:00
hist-details = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
2013-10-21 09:32:03 -04:00
hist-tags = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
2015-11-03 16:44:21 -05:00
most-recent-by-branch = for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'
undo = reset --soft HEAD^
2012-04-05 05:39:31 -04:00
[color]
ui = auto
2012-04-05 05:39:31 -04:00
[color "branch"]
2017-02-20 10:02:49 -05:00
current = yellow reverse
local = yellow
remote = green
2012-04-05 05:39:31 -04:00
[color "diff"]
2017-02-20 10:02:49 -05:00
frag = magenta
new = green
old = red
meta = yellow bold
2012-04-05 05:39:31 -04:00
[color "status"]
2017-02-20 10:02:49 -05:00
added = yellow
changed = green
untracked = cyan
[commit]
gpgsign = true
2013-10-21 09:32:03 -04:00
[core]
2017-02-20 10:02:49 -05:00
autocrlf = input
excludesfile = ~/.gitignore_global
attributesfile = ~/.gitattributes_global
2017-02-20 10:02:49 -05:00
filemode = false
[gpg]
2021-11-02 20:14:26 -04:00
program = gpg
2013-04-29 02:16:39 -04:00
[merge]
2017-02-20 10:02:49 -05:00
tool = vimdiff
2013-04-29 01:29:01 -04:00
[push]
2017-02-20 10:02:49 -05:00
default = upstream
[status]
showUntrackedFiles = all
# show all files instead of just directories
[transfer]
2018-01-03 11:49:50 -05:00
fsckobjects = false
# https://groups.google.com/forum/#!topic/binary-transparency/f-BI4o8HZW0
[diff "enc"]
textconv = bundle exec rails encrypted:show
cachetextconv = false
2021-03-24 20:44:50 -04:00
[pull]
2021-11-02 20:14:26 -04:00
rebase = false
2021-11-02 09:48:51 -04:00
[init]
2021-11-02 20:14:26 -04:00
defaultBranch = master