Is there a git command to display all the files of all commits in a branch?
Thank you in advance.
Is there a git command to display all the files of all commits in a branch?
Thank you in advance.
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. "
You can use this command
git log myBranch --not master --name-status --pretty=format:"%x09"