0

I am working on project, in which a branch say feature/test is used by N number of developers. All developers currently commit their changes and push to same branch.

Now i want to find all files on which i have worked in branch feature/test.

Thanks in advance.

Hayt
  • 5,210
  • 30
  • 37
  • 2
    Possible duplicate of [Can I get git to tell me all the files one user has modified?](http://stackoverflow.com/questions/6349139/can-i-get-git-to-tell-me-all-the-files-one-user-has-modified) – Jeff Puckett Sep 02 '16 at 12:01

1 Answers1

1
git log  --stat --name-only --author="your_name"  --pretty=format:"" --branches=your_branch|sort -u

Source - old question

Community
  • 1
  • 1
Aleksandr
  • 181
  • 1
  • 5