Skip to content

Instantly share code, notes, and snippets.

View isaobushi's full-sized avatar
🎃

Andrea Mele isaobushi

🎃
View GitHub Profile
@isaobushi
isaobushi / git snips
Last active April 18, 2019 00:59
Git Snippets #git
gitk —all
#Pull branches
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done