Skip to content
This repository has been archived by the owner on Apr 20, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (14 loc) · 792 Bytes

PULL_REQUEST_TROUBLESHOOTING.md

File metadata and controls

24 lines (14 loc) · 792 Bytes

Troubleshooting Pull Request Problems

Go back to Readme Home

Note: if there’s a conflicting commit in the history of your master branch, you can destroy your branch and replace it with a fresh copy using the command

git checkout -B master upstream/master.

To make sure your commit goes in at the top of everything else on the upstream repo, rebase:

git rebase upstream/master

If there are conflicts, open the file and look for the diff markers, resolve, and continue.


For basic tips about using Pull Requests, see Creating a Pull Request

See also Pull Request Advanced Tips & Tricks

See also Approving Pull Requests

Go back to Readme Home