Modify git aliases
This commit is contained in:
parent
f34710c943
commit
44f2ec02d4
1 changed files with 5 additions and 11 deletions
16
git/config
16
git/config
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue