github - How to get interesting commits from my git repo's forks into my repo? -
let's github repo x has lot of forks, , of them have new features (=commits). afaik without pull/merge request fork's owner it's not possible "get" commits repo (but not want. want pick stuff need, not getting requests other users).
so question is: how commits from repo's forks repo ?
the fact these commits aren't in pull requests don't prevent apply them fork. can add these fork remotes repo, , cherry-pick/rebase/merge (choose right one) commits them. it's just:
git remote add nice-fork https://github.com/author/repo git fetch nice-fork #then remote branches , commits imported in repo.
if commits want in pull requests, you can them.
Comments
Post a Comment