When I use:
svn diff
or
git diff
It shows:
@@ -1,5 +1,9 @@
What does this mean? Thank you!
|
feedback
|
|
Those are called (c)hunk headers and contain the range information. They are surrounded by double at signs
where The The More details here: http://en.wikipedia.org/wiki/Diff#Unified_format | ||||
|
feedback
|
|
These describe the lines affected by the diff hunk. In your case, it means the hunk affects 5 lines starting from line 1, resulting in a replacement starting at line 1 which is 9 lines long. Note that this is the format used by the unified diff format. The "classical" diff format uses a different model (but who uses classical diff these days?). | |||
|
feedback
|