Answers for "delete a git branch locally and remotely"

2

remove branch local git

$ git branch -d branch_name
$ git branch -D branch_name
Posted by: Guest on December-13-2020
0

How to Delete Local/Remote Git Branches

$ git branch -r | egrep -v -f /dev/fd/0  <(git branch -vv | grep origin) | xargs git branch -d
Posted by: Guest on August-21-2020
0

remove branch git

Git: Remove Branch  & Remotely
Posted by: Guest on August-11-2021

Code answers related to "delete a git branch locally and remotely"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language