Answers for "Git Deleted a branch in local, how to delete in 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

Code answers related to "Git Deleted a branch in local, how to delete in remote?"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language