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

拈花ヽ惹草 提交于 2019-12-21 03:46:23

问题


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:

Thank you for your help.


回答1:


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!



来源:https://stackoverflow.com/questions/7616742/what-are-these-symbols-next-to-merge-mode-by-recursive-in-git-merge

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!