🐙 GitHub - Multi-repo Merge
Multi-repo Merge
Updated at 2017-02-21 12:40
Forking an unmaintained repository and merge all major forked repositories to it.
Fork the original project online e.g.
[email protected]:original/project.gitGet it locally.
git clone [email protected]:your/project.git
- Add another owner's repo as remote and merge it in.
git remote add john [email protected]: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.