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.
1 parent ce095e3 commit 3c9bfb9Copy full SHA for 3c9bfb9
bin/git-clone-subset
@@ -147,4 +147,4 @@ if [[ -e .git/refs/original/ ]] ; then
147
git "for-each-ref" --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d
148
fi &&
149
git reflog expire --expire=now --all &&
150
-git gc --prune=now
+git gc --prune=now
bin/git-delete-local-merged
@@ -5,4 +5,5 @@
5
#
6
# https://plus.google.com/115587336092124934674/posts/dXsagsvLakJ
7
8
-git branch -d `git branch --merged | grep -v '^*' | tr -d '\n'`
+# shellcheck disable=SC2046,SC2063
9
+exec git branch -d $(git branch --merged | grep -v '^*' | tr -d '\n')
0 commit comments