Possible Duplicate:
Git Merge: What does this mean?
Git diff --stat explanation
Sorry for the stupid question, but i can't find a clear answer anywhere.
When you merge two branches in git, you get an output like that :
some_file.txt | 564 ++++++++++++++--
I undestand that +
and -
mean addition and deletion, but :
what does the number of signs represent ? when you have few changes, each sign seem to represent a line, but when you have more signs, i can't get the logic of the representation
is it some sort of percentage of changes ? My guess is that the number of signs represents a relative amount of changes - but relative to what ? current file ? the whole merge ?
how is it calculated ? Is there any official source about this ? The most accurate answer i had on this by now is "this representation is not very precise"... i'm just curious