DevOps / GIT Interview Questions
What is a pull request in git?
Pull request help project maintainers manage changes from the contributors.
Pull requests let you tell other members of the team about changes you have pushed to a GitHub repository. Once a pull request is sent, interested parties/reviewers can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.
Once the review is complete and the changes are approved, the changes merged into the main branch from topical/individual branch.
More Related questions...