pleshakovalexander / git

Usefull git commands

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usefull git commands

Update local branch list

git remote update origin --prune

Delete all local branches except master

git branch | grep -v '^*' | xargs git branch -D

About

Usefull git commands

License:MIT License