culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to see the differences between the working directory and the staging area?

    Answers

    git compare
    git diffCorrect
    git changes
    git show

    The git diff command without arguments shows the differences between the working directory and the staging area, meaning the changes you made but have not yet added with git add.