How to combine / extract problems / pull requests from the top of my fork

How to combine / extract problems / pull requests from upstream to my fork?

I want to apply PullRequest, but I'm not sure how can I unlock a Pull request from an upstream?

Or do I need to add a requester repository?

+6
source share
1 answer

Check 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 (PR, etc.) from this repo

+1
source

Source: https://habr.com/ru/post/890749/


All Articles