Answers for "Delete a Git Branch In Local And Remotely"

14

Delete a Git Branch In Local And Remotely

git push <remote_name> --delete <branch_name>
Posted by: Guest on September-18-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
-1

How to Delete Local/Remote Git Branches

$ git branch -a

# *master
# b1
# remote/origin/master
# remote/origin/b1

$ git push origin --delete b1
# [...]
# - [deleted] b1
Posted by: Guest on August-21-2020

Code answers related to "Delete a Git Branch In Local And Remotely"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language