Re: [git-users] git log with filenames

2016-01-20 Thread Ed Avis
Thanks, --name-only is it.  I didn't spot it in the manual page because I 
was looking for the string 'filename'...

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] git log with filenames

2016-01-18 Thread Konstantin Khomoutov
On Mon, 18 Jan 2016 03:41:51 -0800 (PST)
Ed Avis  wrote:

> I would like to see a log including the files changed in each
> commit.  I normally use 'git log --stat' for this, but it is very
> slow.  I assume the slowness is because it has to diff the file
> contents to display the right number of + and - signs showing the
> number of lines added and removed.  For my purposes I just want to
> see the filenames (in fact, they are often more useful than the log
> message in quickly seeing what a commit relates to).
> 
> Is there some faster alternative to 'git log --stat' which will show 
> changes with their log message, author, and affected filenames?

  git log --name-only

?

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] git log with filenames

2016-01-18 Thread Ed Avis
I would like to see a log including the files changed in each commit.  I 
normally use 'git log --stat' for this, but it is very slow.  I assume the 
slowness is because it has to diff the file contents to display the right 
number of + and - signs showing the number of lines added and removed.  For 
my purposes I just want to see the filenames (in fact, they are often more 
useful than the log message in quickly seeing what a commit relates to).

Is there some faster alternative to 'git log --stat' which will show 
changes with their log message, author, and affected filenames?

-- 
Ed Avis

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.