Re: [git-users] Query regarding git log --author

2018-10-19 Thread Amandeep Srivastava
Hey, Thanks for the details there, I've already been through the documentation ;) I just need a little elaboration, is the - - author regex specified matched with the email and author name (referred to as commit header in the documentation) in Git config? Secondly, suppose I'm looking for

Re: [git-users] Query regarding git log --author

2018-10-18 Thread Konstantin Khomoutov
On Thu, Oct 18, 2018 at 06:16:22AM -0700, Amandeep Srivastava wrote: > Can someone please help me with the functioning of --author filter with git > log. > > As per my understanding, it tries to match partially the strings stored as > email and username in git config, and it's case sensitive.

[git-users] Query regarding git log --author

2018-10-18 Thread Amandeep Srivastava
Hey, Can someone please help me with the functioning of --author filter with git log. As per my understanding, it tries to match partially the strings stored as email and username in git config, and it's case sensitive. Am I right about it? Is there some documentation regarding this? Also,