python_user
python_user

Reputation: 186

How to apply changes in any version of code in python

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

Answers (1)

Felipe
Felipe

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

Related Questions