Home > Net >  I am not able to see the versions comparison in the version control (VS)
I am not able to see the versions comparison in the version control (VS)

Time:10-05

Im supossed to see a comparison between the changes Ive done. (Im learning git) This is What im expected to see , according to my instructor.

CodePudding user response:

Those are the comparisons. It means you went from an empty file to adding twelve lines. Whenever you see something highlighted in green and with a plus sign on the left, it means that you've added the line. If instead, it's a red line with a minus sign, it means you've removed the line.

  • Related