What is the difference between a Pull Request and a Push? #170292
-
Select Topic AreaQuestion BodyI often hear developers talk about “pushing” code and “creating a pull request,” but I noticed they’re not the same thing. |
Beta Was this translation helpful? Give feedback.
Answered by
MiracleMark35
Aug 19, 2025
Replies: 1 comment
-
Push means directly sending your commits from your local repository to a branch on GitHub. Pull Request (PR) is more about proposing your changes so others can review, comment, and decide whether to merge them into the main codebase. Hope this helps |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Mark-Cloud-ph
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Push means directly sending your commits from your local repository to a branch on GitHub.
Pull Request (PR) is more about proposing your changes so others can review, comment, and decide whether to merge them into the main codebase.
Hope this helps