git export to excel

sangwoo noh·2022년 11월 10일
0

git

목록 보기
10/13

방법예시

git log --name-only --all --date=format:'%Y-%m-%d %H:%M:%S' --pretty=format:%an,%ad,%s > ~/Documents/test.csv

usage

$ git log --name-only --all --date=format:'%Y-%m-%d %H:%M:%S' --abbrev-commit --pretty=format:%H%n%an,%ad,%s --since=2022.11.09

option

--name-only: 수정된 파일명 출력
--abbrev-commit: 해쉬값의 일부만 보여줌(짧게)
--since: 입력된 값 이후의 내용을 검색해줌(after와 동일함)
ex)
--since:2022.10.10
--since=1.weeks
등등... 태그도 입력 가능할 듯.

응용하면됨

profile
하기로 했으면 하자

0개의 댓글