git diff command

The git diff command is used when you want to see differences between any two trees. This could be the difference between your working environment and your staging area (git diff by itself), between your staging area and your last commit (git diff --staged), or between two commits (git diff master branchB).

Show the list of files containing conflict markers including line numbers.
```
git diff --check
```