What is pull and push request in Git?
Push and Pull are two parts of the same coin in Git
A pull request (or merge request) is raised when changes made in the forked repository need to be merged to the main repository (by the repository owner).
On the other hand, you need to create a push request in case you need to push your local changes in the repository. Git provides different commands through which you can push all the changed files or you could pick & choose changes that need to make it to the repository. “git push” is the command used to push changes in the repository.