Despite programming for a few years now, I'm still trying to wrap my head around some concepts when it comes to Git. To illustrate what I'm asking, let's set the stage with a hypothetical situation:
With the Git system, is it possible to merge commits from forks upstream?
To add to hellyale
's comment, if you see a fork whose (for instance) master
branch has some changes you want to test / get into your own original repository ("upstream" compared to that fork), you don't have to wait for a pull request.
You can, in a local clone of your own repository, do:
git remote add fork https://url/fork
git fetch fork
git merge fork/master
# test, and if good
git push
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With