How do I display all commit files in a branch?

0

Is there a git command to display all the files of all commits in a branch?

Thank you in advance.

    
asked by anonymous 27.03.2017 / 19:26

2 answers

1

I think it might help you

"After you have created several commits, or if you have cloned a repository with an existing commit history, you'll probably want to look back to see what happened. log command. "

link

    
27.03.2017 / 19:29
0

You can use this command

git log myBranch --not master --name-status --pretty=format:"%x09"
    
10.08.2017 / 20:32