각 라인의 작성자를 확인
git blame
git blame (파일명)
git blame -L (시작줄),(끝 줄, 또는 + 줄 수) (파일명)
이진 탐색 알고리즘으로 문제의 발생 시점을 찾아냄
git bisect
git bisect start
git bisect bad
git checkout (해당 커밋 해시)
git bisect good
git bisect good/bad 를 반복하면 오류시점 탐색 됨
git bisect reset