dotfiles/home/private_dot_config/git/config

37 lines
711 B
Text
Raw Normal View History

2021-12-08 09:38:24 -06:00
[credential]
helper = cache
[core]
2022-02-03 16:58:34 -06:00
excludesfile = /home/daylin/.config/git/ignore
2021-12-08 09:38:24 -06:00
[user]
name = Daylin Morgan
email = daylinmorgan@gmail.com
[submodule]
recurse = true
[pull]
rebase = true
[init]
defaultBranch = main
[branch]
autosetuprebase = always
[alias]
adog = log --all --decorate --oneline --graph
2022-07-19 09:34:49 -05:00
gl = config --global -l
last = log -1 HEAD --stat
ll = log --oneline
st = status -sb
s = status -s
co = checkout
cob = checkout -b
2022-07-21 17:39:04 -05:00
cmt = "!git commit -m \"$(date)\""
2022-07-19 09:34:49 -05:00
# list aliases
la = "!git config -l | grep alias | cut -c 7-"
2022-04-29 10:37:55 -05:00
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
2022-07-19 09:34:49 -05:00
[help]
autocorrect = 20