How do you find a list of files that have changed in a particular commit?
Answer / Mayank Kumar Dubey
To find a list of files that have changed in a particular commit, use the command `git diff-tree --no-commit-id -r <commit>` where `<commit>` is the hash or short hash of the commit.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the syntax for “Rebasing” in Git?
How to squash or fixup commits?
Explain git stash, pop?
What is git bisect? How can you use it to determine the source of a (regression) bug?
What is the difference between git pull and git fetch?
Distinguish between git fetch and git pull?
Why git and not svn?
Explain the gitflow workflow?
How to resolve a conflict in git?
What is git and why do we use it?
What is the difference between GIT and SVN?
Explain what is commit message?