+ prune-branches git alias

This commit is contained in:
2022-07-04 15:50:49 +03:00
parent 551c49ddf6
commit e612342ccc

6
.gitconfig Normal file
View File

@ -0,0 +1,6 @@
[user]
email = info@wpstudio.ru
name = WP Studio
[alias]
prune-branches-dry = !git remote prune origin && git branch -vv | grep ': исчез]' | awk '{print $1}'
prune-branches = !git remote prune origin && git branch -vv | grep ': исчез]' | awk '{print $1}' | xargs -r git branch -d