Il y a trois commits au total, tels que
history_commit_a
history_commit_b
history_commit_c
Parmi eux, 50 fichiers dans history_commit_b ont été modifiés, et les noms de fichiers sont
history_commit_b_file1
history_commit_b_file2
history_commit_b_file3
.
.
.
Attendez.
Puis la question vient. Si je veux voir quels changements se sont produits dans history_commit_b_file50 dans history_commit_b, utilisez directement :
git show history_commit_b;
Git listera les modifications dans tous les fichiers à la fois. Pouvez-vous utiliser la commande pour contrôler git pour afficher uniquement les modifications dans les fichiers history_commit_b_file50 dans history_commit_b, mais pas les modifications dans les fichiers history_commit_b_file1...history_commit_b_file49 ?
gitk history_commit_b_file50
git show history_commit_b history_commit_b_file50