Browse Source

+ prune-branches git alias

master
dimti 2 years ago
parent
commit
e612342ccc
  1. 6
      .gitconfig

6
.gitconfig

@ -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
Loading…
Cancel
Save