+1 vote
in Git by

Q. What's the difference between a "pull request" and a "branch"?

1 Answer

0 votes
by
  • branch is just a separate version of the code.

  • pull request is when someone take the repository, makes their own branch, does some changes, then tries to merge that branch in (put their changes in the other person's code repository).

...