Tool/Git
(GIT) Branch 정보확인
주누
2019. 12. 25. 22:52
로그 확인
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