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 160B

1234567891011
  1. ---
  2. title: "Git"
  3. ---
  4. == Git
  5. Clean up merged branches:
  6. [source,console]
  7. ----
  8. $ git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d
  9. ----