How to Checking out pull requests locally ?
Under your repository name, click Issues or Pull requests
In the "Pull Requests" list, click the pull request you'd like to merge.Find the ID number of the inactive pull request. This is the sequence of digits right after the pull request's title.

Open Terminal.
Fetch the reference to the pull request based on its ID number, creating a new branch in the process.
$ git fetch origin pull/ID/head:BRANCHNAME
[main] $ git checkout BRANCHNAME
> Switched to a new branch 'BRANCHNAME'
No comments:
Post a Comment