-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update patching guidelines #4759
base: main
Are you sure you want to change the base?
Conversation
@@ -39,6 +39,9 @@ create one. | |||
> git format-patch --zero-commit --no-signature -1 -o "$PATCH_DIR/<repo>" | |||
> ``` | |||
|
|||
**Note:** Please make sure there are no other already existing patches |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this break synchronization? It has been necessary in the past.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It breaks the synchronization, we've only had it once. Why would it be necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would it be necessary?
Historically there have been numerous times where a single file is touched by multiple patches. Patches are typically kept separate per the time they were made and their scope. This makes patch removal much easier as the backports flow in.
Can't get backport flow soon enough...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In which order would the patches be applied? Alphabetically? I know that the one case I mention was one patch adding a file and another patching it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alphabetically - that is why the numeric prefix is included in the guidelines.
No description provided.