0 votes
in Git by
How is ‘git diff’ different from ‘git status’?

1 Answer

0 votes
by

This entry is also one of the crucial DevOps interview questions for GitHub interviews. ‘git diff’ helps in representing the changes between commits and the changes between commits and working tree. On the other hand, ‘git status’ helps in finding the difference between the working directory and the index. As a result, it helps in understanding a particular git in detail. The prominent difference is that “git diff” shows differences between various commits, while “git status” does not.

Related questions

0 votes
asked Apr 29, 2023 in Mantis by john ganales
0 votes
asked Sep 5, 2020 in Git by SakshiSharma
...