what does git diff do? code example
Example 1: git diff of a file between two commits
git diff <branch_hash> <other_branch_hash> -- <file_path>
Example 2: git diff show only files
git diff --name-only SHA1 SHA2
git diff <branch_hash> <other_branch_hash> -- <file_path>
git diff --name-only SHA1 SHA2