출처


1. Git manual


2. Stackoverflow(local log 조회)


3. Stackoverflow(remote log 조회)



Local에서 작업중인 경우 조회하는 방법

# 전체 이력 및 수정했던 사항 조회해서 파일에 기록
% git --no-pager log -p  > git_history_dump



다른 repository의 Log 조회하는 방법 (예시: Selenium-Requests)


# 다른 repository의 이력 및 변경사항 조회해서 파일에 기록
% git clone --bare https://github.com/cryzed/Selenium-Requests Selenium-Requests
% cd Selenium-Requests
% git log -p  > git_history_dump



반응형

+ Recent posts