개발자가 오픈소스를 읽는 방법
오픈소스 project를 잘 분석할 수 있는 Reading Skill
1. 해당 오픈소스에서 누가 제일 개발을 많이 할까?
git shortlog -sn | nl
1 77 Soumith Chintala
2 63 Bryan Marcus McCann
3 34 Adam Lerer
4 23 soumith
5 20 Rohan Varma
...git shortlog -sn -- mnist/ | nl2. 전체 소스파일 수정내역(commit) 확인
3. 특정 commit의 자세한 내용 확인
4. 특정 소스파일 기준 commit 리스트 확인
5. 특정 날짜 기준 commit 리스트 확인
6. Merge commit 이란?
7. 과거순으로 소스파일 commit 내역 확인
Last updated