💾 프로젝트 마지막 상태 다운로드
- 지난 강에서 영상과 다르게 진행한 부분이 있는 경우 위 폴더에서 시작합니다.
- 압축 푼 뒤 VS Code로
git-practice
(폴더 안 폴더 주의) 폴더 열어주세요.
옵션들을 활용한 다양한 사용법
각 커밋마다의 변경사항 함께 보기
git log -p
최근 n개 커밋만 보기
git log -(갯수)
통계와 함께 보기
git log --stat
- 더 간략히:
--shortstat
한 줄로 보기
git log --oneline
--pretty=oneline --abbrev-commit
의 줄임
변경사항 내 단어 검색
git log -S (검색어)
George
로 검색
커밋 메시지로 검색
git log --grep (검색어)
자주 사용되는 그래프 로그 보기
git log --all --decorate --oneline --graph
--all
: 모든 브랜치 보기--graph
: 그래프 표현-
--decorate
: 브랜치, 태그 등 모든 레퍼런스 표시--decorate=no
--decorate=short
: 기본--decorate=full
포맷된 로그 보기
얄코 포맷
git log --graph --all --pretty=format:'%C(yellow) %h %C(reset)%C(blue)%ad%C(reset) : %C(white)%s %C(bold green)-- %an%C(reset) %C(bold red)%d%C(reset)' --date=short
date
를relative
로 바꿔보기- 단축키로 등록하여 사용