We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7af094 commit d5b3a5fCopy full SHA for d5b3a5f
.githelpers
@@ -162,7 +162,7 @@ delete_remoteless_branches_interactive() {
162
# Delete all personally-prefixed non-primary branches with confirmation.
163
delete_all_my_branches_interactive() {
164
for branch in $(git branch | egrep '^\W*(aln|anorton)/'); do
165
- printf "Delete $branch, both local and origin? ";
+ printf "Delete $branch, both local and origin? (y/[n])";
166
read ans;
167
[[ "$ans" == "y" ]] && git branch -D $branch && git push origin :$branch
168
done
0 commit comments