您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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