Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to merge/fetch issues/pull requests from upstream to my fork

Tags:

github

How to merge/fetch issues/pull requests from upstream to my fork ?

I want to apply PullRequest, but I'm not sure how can I fork the Pull-request from upstream ?

Or I need add requester repository ?

like image 881
cnd Avatar asked Nov 14 '22 21:11

cnd


1 Answers

Check out this article. The basic premise is to add a remote (git remote add upstream https://github.com/otheruser/repo.git) for the upstream repo. This gives you easy access to any commits (PRs, etc) from that repo

like image 99
Matt Sweeney Avatar answered May 28 '23 18:05

Matt Sweeney