Git 입문
George Boorman
Curriculum Manager, DataCamp

-로 표시할 커밋 수를 제한할 수 있습니다:
최신 3개 커밋으로 제한
git log -3
git log report.md
cd data
git log -2 mental_health_survey.csv
commit f35b9487c063d3facc853c1789b0b77087a859fa
Author: Rep Loop <[email protected]>
Date: Fri Jul 26 15:14:32 2024 +0000
Add two new participants' data.
commit 7f71eadea60bf38f53c8696d23f8314d85342aaf
Author: Rep Loop <[email protected]>
Date: Fri Jul 19 09:58:21 2024 +0000
Adding fresh data for the survey.
git log 제한:git log --since='Month Day Year'
git log --since='Apr 2 2024'
git log --since='Apr 2 2024' --until='Apr 11 2024'
"2 weeks ago""3 months ago""yesterday""07-15-2024""YYYY-MM-DD"12-06-2024는 12월 6일 또는 6월 12일일 수 있음!"15 Jul 2024" 또는 "15 July 2024""15 Jul, 2024"git log
hash는 처음 8~10자만 필요합니다git show c27fa856

Git 입문