You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

git.adoc 387B

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