Replies: 3 comments 4 replies
-
If I may chime in, I believe in this case the development branch flow could work well, as it involves a series of changes that shouldn't be immediately merged into master. For all other cases, I naturally prefer the standard flow, what we could call PR/merge. However, in this instance, the changes are too extensive for that approach, risking a PR with thousands of lines changed, which 'I wouldn't want to be the reviewer of' :) |
Beta Was this translation helpful? Give feedback.
-
I don't have enough experience with teamwork and git to have a real opinion about those approaches.
Using git tools (cherry pick, fix branches, rebase,...) to facilitate to above is my absolute preference. But that might not answer your question. |
Beta Was this translation helpful? Give feedback.
-
I think it is wise to first decide (if not already) on the question #91. As I don't have any meaningfull experience with TypeScript, the outcome of that might make me unable to contribute to this library. |
Beta Was this translation helpful? Give feedback.
-
@smhg how would you like to manage the PR flow for improvements.
Do you like the idea of a
development
branch?If this is acceptable, we need to get
development
into a state we can all agree on, and then make sure new work into it is code reviewed and accepted. Otherwise the changes will become too large to actually review.Do you prefer a trunk based flow?
It looks like historically, this has been the approach. Changes are merged into master, and it is not kept in sync with releases.
Beta Was this translation helpful? Give feedback.
All reactions