jfmercer
jfmercer

Reputation: 3721

What are these symbols next to "merge mode by recursive" in git merge?

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 and what do they mean?

Here's a screenshot:

git pull

Thank you for your help.

Upvotes: 15

Views: 1570

Answers (1)

Adam Dymitruk
Adam Dymitruk

Reputation: 129594

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!

Upvotes: 15

Related Questions