소스 검색

git-log: add graph view (#1275)

Jeef 8 년 전
부모
커밋
c63ef4d8d6
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      pages/common/git-log.md

+ 4 - 0
pages/common/git-log.md

@@ -14,6 +14,10 @@
 
 `git log --oneline`
 
+- Show all commits, tags and branches for the entire repo in a graph format:
+
+`git log --oneline --decorate --all --graph`
+
 - Show only commits whose messages include a given string (case-insensitively):
 
 `git log -i --grep {{search_string}}`