I’m currently working in the CyanogenMod 9 source, and I’d like to create a patch of all my changes. How can I use repo to generate a patch that I can forward to a colleague for him to apply to his repository? Thanks.
I’m currently working in the CyanogenMod 9 source , and I’d like to create
Share
I have zero experience with
repo, but it looks likerepo diffis your friend. That generates a standard diff (usinggit diff) which can be applied using eithergit apply(if you’re willing to use git directly), or using the venerablepatchutility (invoked aspatch -p1).