About 2,800,000 results
Open links in new tab
  1. How can I check out a GitHub pull request with git?

    Dec 19, 2014 · I'd like to check out a previously created pull request (created via GitHub web interface). I searched and found different places where a refs/pull or refs/pull/pr But when I add …

  2. git - How to do a GitHub pull request - Stack Overflow

    Feb 4, 2013 · The Simplest GitHub Pull Request is from the web interface without using git. Register a GitHub account, login then go to the page in the repository you want to change.

  3. git - Pull request vs Merge request - Stack Overflow

    Aug 14, 2020 · A "merge request" should not be confused with the git merge command. Neither should a "pull request" be confused with the git pull command. Both git commands are used …

  4. git - Что такое pull request? - Stack Overflow на русском

    Aug 6, 2012 · Что такое "пул реквест" (pull request), который на GitHub, и как его применить?

  5. github - Git Pull vs. Pull Request - Stack Overflow

    Mar 23, 2014 · A pull request is requesting the maintainer of a repository to git pull in some changes (as the name already suggests). GitHub provides an additional easy to use interface …

  6. git - Undo a merge by pull request? - Stack Overflow

    Jun 26, 2011 · Someone accepted a pull request which they shouldn't have. Now we have a bunch of broken code merged in. How do you undo a pull request? I was just going to revert …

  7. git - How to apply Pull Request locally? - Stack Overflow

    Generally, if You have already merged You Pull Request, then you can simply call git pull on Your production branch and this is generally the preferred option IMHO. If You would like to test the …

  8. git - How to modify GitHub pull request? - Stack Overflow

    55 I just had one commit in a pull request, and I used git commit --amend to update it. I then did a force push with git push -f so my amended commit replaced the original one. The pull request …

  9. git - Renaming a branch while on pull request - Stack Overflow

    184 "Renaming" a remote branch in git, as indicated by the link you provided, is really just deleting a branch, followed by pushing a new one with the same commit hash but a new name. If you …

  10. github - Why is a git 'pull request' not called a 'push request ...

    Feb 9, 2014 · 802 The terminology used to merge a branch with an official repository is a 'pull request'. This is confusing, as it appears that I am requesting to push my changes to the …