dotfiles/home/.gitconfig

30 lines
765 B
INI
Raw Normal View History

2011-02-27 16:28:22 -05:00
[user]
name = James Walker
email = walkah@walkah.net
2016-04-06 08:28:58 -04:00
signingkey = 4D47A81C
2011-02-27 16:28:22 -05:00
[color]
diff = auto
status = auto
branch = auto
ui = auto
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
st = status -s
smu = submodule update --init --recursive
2015-05-31 17:31:08 -04:00
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
up = pull --rebase --autostash
2019-04-27 08:49:52 -04:00
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d"
2011-02-27 18:34:13 -05:00
[github]
user = walkah
2014-01-23 22:01:45 -05:00
[git-up "bundler"]
check = true
autoinstall = true
2015-04-10 17:02:34 -04:00
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
2015-04-07 22:35:57 -04:00
required = true
2017-06-15 10:27:53 -04:00
[commit]
gpgsign = true
[pull]
rebase = false