Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 316
jfmercer Avatar asked Sep 30 '11 22:09

jfmercer


1 Answers

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!

like image 121
Adam Dymitruk Avatar answered Sep 28 '22 09:09

Adam Dymitruk