Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルを現在の HEAD ではない特定のコミットと比較するには、 を呼び出しgit log、コミット ハッシュを記録してから を呼び出しますgit diff <hash> filename。
git log
git diff <hash> filename
次のような diff コマンドを使用して、ファイルを以前git diff -<x_commits_back> filenameのバージョンのバージョンと比較する方法はありますか?x
git diff -<x_commits_back> filename
x
ありがとうございました
はい、使用できます:
git diff HEAD~X -- filename
X適宜交換してください。マージコミットの最初の親に続くことに注意してください。
X