Pinboard bookmarks for July 2021
u:onekFetching all branches and tags from a remote Git repository
2021-07-22
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git tips
2021-07-22