Answers for "git delete local branches not on remote"

3

delete local branches not on remote

git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D
Posted by: Guest on May-06-2020
2

git delete local branches not on remote

git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done
Posted by: Guest on April-05-2021
0

git delete branches that aren't on remote

git fetch --all --prune
Posted by: Guest on December-31-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 "git delete local branches not on remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language