본문 바로가기
IT/Unix

git cimmit 간의 변경 파일 리스트 뽑기

by Spring Up!! 2023. 3. 7.
반응형

* git cimmit 간의 변경 파일 리스트 뽑기
git diff --name-status <old_commit> <new_commit>

* 수정된 파일 목록만 뽑기
git diff --name-status <old_commit> <new_commit> --diff-filter=M

* diff-filter option list
A: addition of a file
C: copy of a file into a new one
D: deletion of a file
M: modification of the contents or mode of a file
R: renaming of a file
T: change in the type of the file
U: file is unmerged (you must complete the merge before it can be committed)
X: "unknown" change type (most probably a bug, please report it)



반응형

'IT > Unix' 카테고리의 다른 글

dbus 로 서비스 실행하기  (1) 2023.12.27
unix 파일 내용 지우기  (0) 2017.09.08
make 모든 파일을 컴파일 하는 예제  (0) 2017.06.01
특정 포트로 SSH 접속  (0) 2017.05.24
유용한 vi 명령어  (0) 2017.05.08
Unix 기본 명령어  (0) 2017.05.06

댓글