Answers for "how to clear all local branch git"

2

delete all local branches git

git branch --merged | grep -v \* | xargs git branch -D
Posted by: Guest on March-03-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language