Horje
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 i can install composer after download froject from githb Code Example how i can install composer after download froject from githb Code Example
how to check used ports linux Code Example how to check used ports linux Code Example
bash get filename without extension Code Example bash get filename without extension Code Example
how completely remove kde Code Example how completely remove kde Code Example
cp .env.example .env Code Example cp .env.example .env Code Example

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