Need Assistance?

support@tutorialshub.in

Repositories, Branches and Pull Requests

Opening a pull request

ADVERTISEMENT
GitHub Free Lesson
5 min read
ADVERTISEMENT

What a pull request does

A pull request proposes integrating changes from one branch into another. It gives collaborators a place to inspect the diff, discuss implementation, run automated checks and approve or request changes.

Write a useful description

Explain the problem, the solution, important design decisions and how the change was tested. If the repository uses issue tracking, link the relevant issue so the purpose and implementation remain connected.

Keep pull requests reviewable

Large unrelated pull requests are difficult to review. Split independent work into smaller changes whenever practical.

ADVERTISEMENT