1
Fork 0
dots/git/config

27 lines
501 B
Text
Raw Normal View History

2023-08-21 09:56:16 +00:00
[init]
defaultBranch = main
[user]
email = hadeedji@gmail.com
name = Hadeed Ahmad
2024-06-28 07:17:58 +00:00
[push]
autoSetupRemote = true
2023-08-21 09:56:16 +00:00
[alias]
s = status -u
a = add
aa = add -A
c = commit
ca = commit --amend --no-edit
p = push
pf = push -f
ac = !git aa && git c
aca = !git aa && git ca
acp = !git ac && git p
acap = !git aca && git pf
l = log --all --decorate --oneline --graph -n 20
cfc = !git clone $(xclip -out -sel clip)
# vim: filetype=gitconfig