0

To check differences I run git diff:

(reg37) C:\Users\banikr\PycharmProjects\Registration\registration>git diff master origin/master
diff --git a/mainfile.py b/mainfile.py
index 94a5113..4b514f1 100644
--- a/mainfile.py
+++ b/mainfile.py
@@ -9,6 +9,9 @@ import matplotlib as mtl
:

What do the @@ signs mean? Do the numbers indicate the line number of the code?

phd
  • 82,685
  • 13
  • 120
  • 165
banikr
  • 63
  • 1
  • 9

1 Answers1

1

It's a standard GNU format for describe change:
https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html#Detailed-Unified

You can refer to the following response for further information:
https://stackoverflow.com/a/24456418/9361998

alessiosavi
  • 2,753
  • 2
  • 19
  • 38