From: "juh" <[email protected]>
Hi,
I don't understand two things in the output of git diff:
$ git diff 8bdc f5fa
diff --git a/text.md b/text.md
index 4202174..6ef3a44 100644
--- a/text.md
+++ b/text.md
@@ -3,3 +3,4 @@ title: Foo
author: Peter
---
+Once upon a time...
first, as I understand it the diff style is "unified diff", so google
can help.
Try http://www.gitguys.com/topics/git-diff/
1. What does the line with the word "index" mean?
The 'index' (also known as a/k/a the staging area) is your local
preparation area between adding a file or part of a file, and actually
committing the changes to the repository. It's like having an "out" tray
at the edge of your desk for stuff thats 'finished', but could be
updated before the whole lot is filed as a block - other VCS's hide it,
but Git is more open about it.
The regular diff is between the working files and the index (see the
link above).
2. What does the line with the @@ mean?
These define the change 'hunks' and give a before (-) / after (+) line
numbers, and line counts
How are these @@ called? Do they hava a name?
What does the numbers between the @@ mean? They refer somehow to the
changed lines, I guess. But what exactly do they say?
TIA
juh
--
Philip>
--
You received this message because you are subscribed to the Google Groups "Git for
human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.