Applying git patches from a mailing list

て烟熏妆下的殇ゞ 提交于 2019-12-10 18:33:38

问题


I need to apply a patch(from a mailing list) into a local git repository

The patch in the mailing list has a cover message and a brief information about it. I can copy paste the appropriate patch text into a file and use it as a patch. If possible, could someone please suggest a better alternative?


回答1:


You have the choice of git apply and git am with git mailinfo.

The git mailinfo command will process the email message and will separate the patch from the log, but usually you can simply use git am. Also please note the --scissors,

--scissors

Remove everything in body before a scissors line. A line that mainly consists of scissors (either ">8" or "8<") and perforation (dash "-") marks is called a scissors line, and is used to request the reader to cut the message at that line. If such a line appears in the body of the message before the patch, everything before it (including the scissors line itself) is ignored when this option is used.



来源:https://stackoverflow.com/questions/24856020/applying-git-patches-from-a-mailing-list

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