🐙 GitHub - Multi-repo Merge
Updated at 2017-02-21 10:40
Forking an unmaintained repository and merge all major forked repositories to it.
Fork the original project online e.g.
git@github.com:original/project.git
Get it locally.
git clone git@github.com:your/project.git
- Add another owner's repo as remote and merge it in.
git remote add john git@github.com:john/project.git
git fetch john
git checkout master
git merge john/master master
# resolve conflicts and if there were any:
git add -A
git commit
- Repeat this for all other forks you want to get in.