I have a newb question about git. When I use git pull [project name] master to update my core files, I get a bunch of green plus and red minus signals under "merge made by recursive." What are these symbols & what do they mean?

Here's a screenshot:

git pull

Thank you for your help.

link|improve this question
feedback

1 Answer

That is an approximation of how many lines have changed. Pluses are for new content and minuses are for what was taken out. Modifications end up with equal amount of both. Deletions are only minuses and new files are all pluses.

Hope this helps!

link|improve this answer
And you can see the same style of diff output using git diff --stat [args]. – Jefromi Oct 1 '11 at 4:45
It sure does. Many thanks! – jfmercer Dec 5 '11 at 19:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.