-
|
@jacksund I'm starting to contribute to Simmate a lot more and with that comes a new challenge of using git properly. I know it's recommended to have most pull request be only for small changes. However, I'm not sure what the best method is when I have several small changes that rely on each other. For example, I just created PR #585 which has several name changes. Now I'm working on debugging several issues with the bader_dev workflow and this is easiest when I fix the bugs after the changes I made in PR #585. For situations like this, is it more appropriate to make a new branch after #585, keep editing, and submit a new PR, or should I keep editing #585 directly? The problem I see with the first is that if I submit another PR, there will be duplicate changes across both PRs. The problem with the second is that the PR becomes much larger. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
We'll be fine if PRs don't follow best practices all the time. In an ideal world, you would stage PRs via "nested" forks -- plus Github would need to allow for listing PR dependencies. The whole process just becomes inconvenient and difficult to follow for some (link). Instead, I would say just do one of the following:
Simmate & our apps are still in |
Beta Was this translation helpful? Give feedback.
We'll be fine if PRs don't follow best practices all the time.
In an ideal world, you would stage PRs via "nested" forks -- plus Github would need to allow for listing PR dependencies. The whole process just becomes inconvenient and difficult to follow for some (link).
Instead, I would say just do one of the following:
S…