git 一些骚操作 👀
- 查看分支状态
git log --decorate --all --oneline --graph
- 批量删除 某些分支
git branch | grep 'xxxx' | xargs git branch -D
增加 grep -Ev 'xxxx'
排除其中某些分支
git 一些骚操作 👀
git log --decorate --all --oneline --graph
git branch | grep 'xxxx' | xargs git branch -D
增加 grep -Ev 'xxxx'
排除其中某些分支