After merging PR how can I contribute to that project if its codebase is updated ? #820
-
Answer me |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
After merging of your PR. You can Pull the changes in your current branch or can create a new branch from main. |
Beta Was this translation helpful? Give feedback.
-
@Abbas7120 To contribute to a project after your PR is merged and the codebase is updated, first, sync your fork with the main repository. Do this by adding the upstream remote, fetching the latest changes from the upstream repository, merging those changes into your local main branch, and pushing the updates to your fork. Then, create a new branch for your new feature or bug fix, make your changes, commit them, and push the branch to your fork. Finally, submit another pull request from that branch to continue contributing. |
Beta Was this translation helpful? Give feedback.
@Abbas7120 To contribute to a project after your PR is merged and the codebase is updated, first, sync your fork with the main repository. Do this by adding the upstream remote, fetching the latest changes from the upstream repository, merging those changes into your local main branch, and pushing the updates to your fork. Then, create a new branch for your new feature or bug fix, make your changes, commit them, and push the branch to your fork. Finally, submit another pull request from that branch to continue contributing.