Branching Strategy: Should I create my PR for main or for a specific RFC? #2174
Answered
by
Velfi
thomas-k-cameron
asked this question in
Q&A
-
I'm trying to create a PR for RFC30 (serialization and de-serialization). I want to create several small PRs instead of a one big one. Should I create a PR for main or for some other branch? related: #1944 (comment) |
Beta Was this translation helpful? Give feedback.
Answered by
Velfi
Jan 6, 2023
Replies: 1 comment
-
Please target PRs to |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Velfi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please target PRs to
main
. Since your feature won't break anything if it's implemented piece-by-piece, that'll be fine. If you add Rust code that you don't want customers to start interacting with, consider marking it as#[doc(hidden)]
until it's ready.