Pensu
Pensu

Reputation: 3619

How to make changes in an existing github PR?

I am working on a open source project. I forke it, downloaded it, used it, found some issues, modified and sent a PR to upstream code. Now, they want me to make some changes, and I am not sure how to do that in the existing PR?

Can anyone please help me do that? TIA.

Upvotes: 2

Views: 3207

Answers (1)

CodeWizard
CodeWizard

Reputation: 142352

Now, they want me to make some changes, and I am not sure how to do that in the existing PR?

Simply commit your new changes to the branch which the PR is pointing to and you will see the updates in the BR automatically.

This is the concept of the PR. Update your code as many times as you need and commit them. All your changes will be reflected in the Pr.

For example look on hit. multiple commits were made to the branch:

https://github.com/github/linguist/pull/2843/commits

Upvotes: 2

Related Questions