1
Fork 0

Modify git aliases

This commit is contained in:
Hadeed 2024-12-12 19:02:48 +05:00
parent f34710c943
commit 44f2ec02d4

View file

@ -10,17 +10,11 @@
[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
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
cfc = !git clone $(xclip -out -sel clip)
# vim: filetype=gitconfig