Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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. ----