Reputation: 186
I have made some changes in some file of openEdX source code. Now I want to create a patch such that it can be applied to new versions of that file. How should I do this?
Upvotes: 1
Views: 93
Reputation: 440
The openedx source code is managed by git, so you only need to create a regular git patch.
This is solved in some other question
The short answer would be to do a cd /edx/app/edxapp/edx-platform
and then
git diff > mypatch.patch
Upvotes: 1