본문 바로가기
IT/Git

git diff 명령어로 commit 비교하기

by 뉴코딩맨 2023. 1. 29.

git diff "commit1".."commit2" 또는 git diff "commit1" "commit2" 명령어로 commit에 따라 파일을 비교할 수 있다. commit의 순서에 따라 결과가 다르게 나온다.

 

git diff 명령어로 commit 비교하기

 

a.txt 파일 생성 및 hello 추가
a.txt 파일 생성 및 hello 추가

 

a.txt 파일에 hello 추가
a.txt 파일에 hello 추가

 

a.txt 파일을 hello world로 수정 및 commit
a.txt 파일을 hello world로 수정 및 commit

 

a.txt 파일을 hello world로 수정
a.txt 파일을 hello world로 수정

 

git diff 명령어로 commit 비교하기
git diff 명령어로 commit 비교하기

 

git diff "commit1".."commit2" 또는 git diff "commit1" "commit2" 취향에 따라 선택해서 사용하면 될 것 같다.

댓글