For a detailed examination of what changed between two commits, the Git command is 'git _______.'

  • branch
  • diff
  • log
  • status
The 'git diff' command is used for a detailed examination of changes between two commits in Git. It provides a line-by-line comparison of the changes made, including additions and deletions. The 'log' command shows the commit history, 'status' displays the status of working directory changes, and 'branch' is used for managing branches.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *