Answers for "remove all branch local git"

2

delete all local branches git

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

remove all branch local git

git branch | grep -v "develop" | grep -v "master" | xargs git branch -D
Posted by: Guest on March-18-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language