Szymon Modzelewski wrote: > > Yes I know, but this one is already tested, voted and accepted by > > Spencer, however not merged - that's why I'm asking (; > > If you need this now you can apply the patch to your local git branch > > just do as the gerrit page says: > > git fetch http://openocd.zylin.com/p/openocd refs/changes/77/477/2 && > git checkout FETCH_HEAD > > then you can cherry-pick commit > 1256a3311ed5065c35a88f5d3ef16c46f70677b1 into your branch.
Better to skip the checkout. Just run git fetch http://openocd.zylin.com/p/openocd refs/changes/77/477/2 && git cherry-pick FETCH_HEAD where you want to cherry-pick the patch. If you already have one or more commits and want to insert 1256a33 before them, then only run git fetch, and do an interactive rebase, adding pick 1256a33 in the rebase recipe where you want the commit. //Peter ------------------------------------------------------------------------------ Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. http://www.accelacomm.com/jaw/sfnl/114/51521223/ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
