Is there a way to make Git give me output like svn ls -v does? Basically, a list of each file and who last edited that file? Like this:
filea.txt Someone Else
fileb.txt Another Person
Maybe even with the SHA-1 hash values to identify the commit the change happened in?
-
thats tight, i didnt know about svn ls for some reason, thankstheman_on_vista– theman_on_vista2009年01月26日 14:11:38 +00:00Commented Jan 26, 2009 at 14:11
3 Answers 3
It's not a very natural question to ask in Git, but you can probably achieve something like what you want with something like this.
for a in $(ls); do git log --pretty=format:"%h%x09%an%x09%ad%x09$a" -1 -- "$a"; done
This goes through each file in the current directory and performs a git log on it to find the last commit to have affected it.
It's not very efficient, as it searches the Git history for each file and doesn't make any effort to reuse the results of previous searches. It is, however, a one-liner.
3 Comments
You want to play around with git log and its pretty formats. Here's an example that doesn't completely address what you want, but should get you on the way:
git log --pretty=format:"%h: %s -- %an"
Prints:
...
58a2e46: Added readme for github. -- DylanFM
...
Comments
The question is: why do you need it? Currently Git lacks a single command that would do "svn ls -v" equivalent, and you would have to do a bit of scripting: the "git log -1 -- $filename" idea is, I think, the simplest solution (in term of number of lines of script to write); if it would, it probably will be as "git blame ".
But I guess that there is alternate way to solve your issue that you used "svn ls -v" to solve.
Please also remember that with the nonlinear history, the notion who last changed a file is not unambiguous.