git: aliase

This commit is contained in:
Michael Grote 2021-10-26 12:15:48 +02:00
parent 4e90ca3ba3
commit 849827489d

View file

@ -8,21 +8,14 @@
cm = commit -m
c = checkout
d = diff
ds = diff --staged
rc = rebase --continue
remote = remote -v
stagep = stage -p
sp = stage -p
last = log -1 HEAD --stat
# Delete all local branches but master and the current one, only if they are fully merged with master.
dbra = "!f(){\
git branch | grep -v "master" | grep -v ^* | xargs git branch -d;\
# Delete all local branches but master and the current one, only if they are fully merged with master.
delbranches = "!f(){\
- git branch | grep -v "master" | grep -v ^* | xargs git branch -d;\
}; f"
# Delete all local branches but master and the current one.
dbraf = "!f(){\
git branch | grep -v "master" | grep -v ^* | xargs git branch -D;\
}; f"
dellast = reset HEAD^1
[core]
editor = vim
[help]