Horje
git delete local branches not on remote Code Example
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
delete local branches not on remote
git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D
git delete branches that aren't on remote
git fetch --all --prune




Shell

Related
how to remove samba ubuntu Code Example how to remove samba ubuntu Code Example
git show tree graph Code Example git show tree graph Code Example
install tree in linux Code Example install tree in linux Code Example
django_filters install Code Example django_filters install Code Example
ssh delete folder Code Example ssh delete folder Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13