log 출력

git log --branches --decorate
git log --branches --decorate --graph
git log --branches --decorate --graph --oneline 

git log master..exp # master branch와 exp branch의 차이 ## 순서 중요 
git log -p master..exp # 코드 차이까지 볼 때 

git diff master..exp