问题
I am having around 100 patches like below,is there a way to apply all of them in one shot?
0001-*.patch,0002-*.patch,0003-*.patch............
回答1:
You can use git am
, for example
$ git am *.patch
For all available options, checkout the man page.
来源:https://stackoverflow.com/questions/18494750/how-to-apply-multiple-git-patches-in-one-shot