+++ +++ :source-highlighter: pygments == Git https://git-scm.com/[Git] is a distributed version control system. All code I write is committed to a Git repository somewhere, and a lot of non-code documents and configuration files are too. === Snippets Clean up merged branches: [source,console] ---- $ git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d ----