로그 확인
git log --branches --decorate
git log --branches --decorate --graph
master에 f3.txt 파일 추가 후 커밋
git log --branches --decorate --graph
이제 graph를 실행하면
효용성을 한눈에 볼 수 있다.
전체적으로 간결하게 현재 브랜치 상태를 보고 싶을 때
git log --branches --decorate --graph --oneline
브랜치 사이의 차이점을 보고 싶을 때
git log master..exp
'Tool > Git' 카테고리의 다른 글
(GIT) Branch 충돌해결 (0) | 2019.12.25 |
---|---|
(GIT) Branch 병합 (0) | 2019.12.25 |
(GIT) Branch 만들기 (0) | 2019.12.25 |
(GIT) reset과 checkout의 원리 (0) | 2019.12.25 |
(GIT) GIT 내부 파헤치지 - COMMIT (with gistory) (0) | 2019.12.25 |