git: add alias to remove merged branches

This commit is contained in:
Guillaume Dott 2026-08-20 16:37:42 +02:00
parent 61b1f236bb
commit 56c33083d0

View File

@ -19,6 +19,7 @@
sl = stash list sl = stash list
ss = stash show ss = stash show
deploy = !git checkout production && git merge --ff-only origin/develop deploy = !git checkout production && git merge --ff-only origin/develop
rm-merged-branches = !git branch --merged | grep -Ev '(^\\*|develop|production|staging)' | xargs git branch -d
[diff] [diff]
tool = vimdiff tool = vimdiff
[merge] [merge]