1
Fork 0
dots/git/config
2024-12-14 03:42:18 +05:00

23 lines
428 B
Text

[init]
defaultBranch = main
[user]
email = me@hadeedahmad.com
name = Hadeed Ahmad
[push]
autoSetupRemote = true
[pull]
rebase = true
[alias]
s = status -u
a = add -A
ac = !git a && git commit
acp = !git ac && git push
aca = !git a && git commit --amend --no-edit
acap = !git aca && git push --force
l = log --all --decorate --oneline --graph -n 20
# vim: filetype=gitconfig