git log
查看提交历史记录。每个提交都有一个关联的修订说明符,它是一个哈希键(例如 14b8d0982044b0c49f7a855e396206ee65c0e787
和 b410ad4619d296f9d37f0db3d0ff5b9066838b39
)。要查看两个不同提交之间的差异,请使用 git diff
与两个提交的修订说明符的前几个字符,如下所示:
# diff between commits 14b8... and b410...
git diff 14b8..b410
# only include diff of specified files
git diff 14b8..b410 path/to/file/a path/to/file/b
如果您想概述从提交到提交之间发生的所有差异,请使用
git log
或 git whatchanged
以及补丁选项:
# include patch displays in the commit history
git log -p
git whatchanged -p
# only get history of those commits that touch specified paths
git log path/a path/b
git whatchanged path/c path/d
我最喜欢的是
git log -p <filename>
,它将为您提供给定文件的所有提交的历史记录以及每个提交的差异。
我喜欢使用 gitk name_of_file
这显示了每次提交时文件发生的更改的良好列表,而不是显示对所有文件的更改。可以更轻松地追踪发生的事情。
许多 Git 历史浏览器,包括
git log
(和“git log --graph”)、gitk(在 Tcl/Tk 中,Git 的一部分)、QGit(在 Qt 中)、tig(Git 的文本模式界面) ,使用 ncurses)、Giggle(在 GTK+ 中)、TortoiseGit 和git-cheetah 支持路径限制(例如,gitk path/to/file
)。
git log --all -- path/to/file
应该可以工作
当然,如果你想要尽可能接近 TortoiseSVN 的东西,你可以使用 TortoiseGit。
TortoiseGit还提供了一个命令行工具来查看文件的历史记录。使用 PowerShell:
C:\Program` Files\TortoiseGit\bin\TortoiseGitProc.exe /command:log /path:"c:\path\to\your\file.txt"
git show --all -- path/to/file