We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d76533 + 42dc755 commit 173a150Copy full SHA for 173a150
README.md
@@ -0,0 +1,18 @@
1
+# git-delete-merged-branches
2
+
3
+Git utility script to delete merged local branches.
4
5
+# Installation
6
7
+```
8
+curl -O https://raw.githubusercontent.com/kyanny/git-delete-merged-branches/master/git-delete-merged-branches
9
+chmod +x git-delete-merged-branches
10
+install git-delete-merged-branches /usr/local/bin
11
12
13
+# Git aliases
14
15
16
+git config --global --add alias.fp '!git fetch -p && git-delete-merged-branches'
17
+git config --global --add alias.pp '!git pull -p && git-delete-merged-branches'
18
0 commit comments