0
Is there a git command to display all files, from all commits in a branch?
Grateful from now on.
0
Is there a git command to display all files, from all commits in a branch?
Grateful from now on.
0
You can use this command
git log myBranch --not master --name-status --pretty=format:"%x09"
0
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 has happened. The Most basic and Powerful tool to do this is the git log command."
https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History
Browser other questions tagged git
You are not signed in. Login or sign up in order to post.
Answering (as well as asking) in another language is not advisable. It is interesting you edit, translating the quote at least.
– Murillo Goulart
Thanks, I got it sorted!
– André Buarque