Created
May 3, 2018 09:17
-
-
Save Orlandster/c1cf4975e4c7f766905b4d1bab5382b8 to your computer and use it in GitHub Desktop.
Git: Merge with other repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd path/to/project-b | |
git remote add project-a path/to/project-a | |
git fetch project-a | |
git merge --allow-unrelated-histories project-a/master # or whichever branch you want to merge | |
git remote remove project-a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment