![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FmrJuV%2FbtsFpPkK5cE%2FNGndM7ge7QATQxlCzhivmK%2Fimg.png)
명령어 사용법 $ git log -p ##예시 $ git log -p test.py git log 문서 메뉴얼 Browsing revisions The git-log[1] command can show lists of commits. On its own, it shows all commits reachable from the parent commit; but you can also make more specific requests: $ git log v2.5.. # commits since (not reachable from) v2.5 $ git log test..master # commits reachable from master but not test $ git log master..t..