Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2869

ローカルのfeatureブランチを全削除するシェル

$
0
0
開発中、溜まってきてクッソ邪魔なときに脳死で叩こう! #!/bin/bash items=(`git branch | grep feature/`) for item in "${items[@]}"; do echo "delete: ${item}" git branch -D $item done

Viewing all articles
Browse latest Browse all 2869

Trending Articles