With Subversion I could use TortoiseSVN to view the history/log of a file.
How can I do this with Git?
I am just looking for the history record for a particular file, and then the ability to compare the different versions.
With Subversion I could use TortoiseSVN to view the history/log of a file.
How can I do this with Git?
I am just looking for the history record for a particular file, and then the ability to compare the different versions.
Many Git history browsers, including git log
(and 'git log --graph'), gitk (in Tcl/Tk, part of Git), QGit (in Qt), tig (text mode interface to Git, using ncurses), Giggle (in GTK+), TortoiseGit and git-cheetah support path limiting (e.g., gitk path/to/file
).
Of course, if you want something as close to TortoiseSVN as possible, you could just use TortoiseGit.
My favorite is git log -p <filename>
, which will give you a history of all the commits of the given file as well as the diffs for each commit.
I like to use gitk name_of_file
This shows a nice list of the changes that happened to a file at each commit, instead of showing the changes to all the files. Makes it easier to track down something that happened.
TortoiseGit also provides a command line tool to do see the history of a file. Using PowerShell:
C:\Program` Files\TortoiseGit\bin\TortoiseGitProc.exe /command:log /path:"c:\path\to\your\file.txt"
Use
git log
to view the commit history. Each commit has an associated revision specifier that is a hash key (e.g.14b8d0982044b0c49f7a855e396206ee65c0e787
andb410ad4619d296f9d37f0db3d0ff5b9066838b39
). To view the difference between two different commits, usegit diff
with the first few characters of the revision specifiers of both commits, like so:If you want to get an overview over all the differences that happened from commit to commit, use
git log
orgit whatchanged
with the patch option: