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.
1 Answer
I have zero experience with repo, but it looks like repo diff is your friend. That generates a standard diff (using git diff) which can be applied using either git apply (if you're willing to use git directly), or using the venerable patch utility (invoked as patch -p1).
1 Comment
tony19
Can't believe I overlooked that. Thanks!