3

I know there's a git command to list all the commits by a user and number of days as below,

git log --since=15.days --author="Vijin Paulraj"

However, that will only return the list of commits done by the user with hash. But I don't see any commands to list only the file names.

Can anyone please help me?

Vijin Paulraj
  • 4,469
  • 5
  • 39
  • 54

2 Answers2

2

When you pass to git log option --name-only it will show only names of changed files. Does it solve your problem?

grimsock
  • 774
  • 5
  • 18
1

You can also get file list in a specific interval of time git log --name-only --author="authar name" --since='Date From' --until='date To'

sachin
  • 165
  • 1
  • 15