파일이 a.txt
있습니다.
cat a.txt
> hello
의 내용 a.txt
은 "안녕하세요"입니다.
나는 커밋합니다.
git add a.txt
git commit -m "first commit"
그런 다음 dir 로 이동 a.txt
합니다 test
.
mkdir test
mv a.txt test
그런 다음 두 번째 커밋을합니다.
git add -A
git commit -m "second commit"
마지막으로 a.txt
대신 "안녕"이라고 편집 합니다.
cat a.txt
> goodbye
마지막 커밋을합니다.
git add a.txt
git commit -m "final commit"
이제 여기 내 질문이 있습니다.
a.txt
마지막 커밋과 첫 커밋 사이 의 내용을 어떻게 비교 합니까?
시도해 보았지만
git diff HEAD^^..HEAD -M a.txt
작동하지 않았습니다. git log --follow a.txt
이름을 제대로 감지하지만 git diff
. 하나있어?