GitNotes.2-10.md
본 문서는 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)

반응형

+ Recent posts