Elvis Dowson <[email protected]> writes:

>       Does anyone have a script that will allow me to apply all the
> patches  that are contained in a folder, using the git apply command?
>
> I have hundreds of patches that I want to apply from the dss2 and pm
> branches to the linux-omap-2.6 branch, locally, to bring it upto date,
> to a known state before making specific patches for the overo
> platform.

Not sure exactly what you're trying to do here, but since the PM
branch probably makes up most of those patches, why do you need to
apply them?  Can't you just checkout the pm branch and add the other
patches on top?  e.g.

Create a test branch for your work in progress which is rooted at the
pm branch:

$ git checkout -b wip/test pm

Apply your other patches (dss2, etc.)

$ git am <patches>

Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to