git 커뮤니티 책에서 다음과 같이 말합니다.
할 수있는 또 다른 흥미로운 일은 다음과 같이 '--graph'옵션을 사용하여 커밋 그래프를 시각화하는 것입니다.
$ git log --pretty=format:'%h : %s' --graph * 2d3acf9 : ignore errors from SIGCHLD on trap * 5e3ee11 : Merge branch 'master' of git://github.com/dustin/grit |\ | * 420eac9 : Added a method for getting the current branch. * | 30e367c : timeout code and tests * | 5a09431 : add timeout protection to grit * | e1193f8 : support for heads with slashes in them |/ * d6016bc : require time for xmlschema
커밋 히스토리 라인의 아주 멋진 ASCII 표현을 제공합니다.
이 그래프를 어떻게 읽어야합니까? 420eac9
나머지와 어떻게 다릅니 까?