본 문서는 Git Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
Section 2.10: 로그 목록에 수정 내용을 포함하여 조회하기
로그 목록 조회시 매 커밋마다 수정 내역을 포함시켜 출력하려면, -p
혹은 --patch
옵션을 사용한다.
git log --patch
예제 (Trello Scientist repository 에서 발췌)
$ git log -p
commit 8ea1452aca481a837d9504f1b2c77ad013367d25
Author: Raymond Chou <info@raychou.io>
Date: Wed Mar 2 10:35:25 2016 -0800
fix readme error link
diff --git a/README.md b/README.md
index 1120a00..9bef0ce 100644
--- a/README.md
+++ b/README.md
@@ -134,7 +134,7 @@ the control function threw, but *after* testing the other functions and
readying
the logging. The criteria for matching errors is based on the constructor and
message.
-You can find this full example at [examples/errors.js](examples/error.js).
+You can find this full example at [examples/errors.js](examples/errors.js).
## Asynchronous behaviors
commit d3178a22716cc35b6a2bdd679a7ec24bc8c63ffa
:
[출처] https://books.goalkicker.com/GitBook/ (CC BY-SA)
반응형
'번역 > Git Notes for Professionals' 카테고리의 다른 글
2.12: 커밋 하나의 내용 표시하기 (0) | 2019.08.14 |
---|---|
2.11: 로그에서 수정된 파일 정보 표시하기 (0) | 2019.08.14 |
2.9: 로그 필터링하기 (0) | 2019.08.14 |
2.8: 파일 내에서 라인 수 기준으로 특정 범위에 해당하는 변경 로그 표시하기 (0) | 2019.08.14 |
2.7: git log 내용 중 커밋 문자열 검색하기 (0) | 2019.08.14 |