-
-
Save shi-yan/6fa8aeea3d04f1b149f46ff725408d28 to your computer and use it in GitHub Desktop.
[Git] Fetch & merge upstream/downstream repo
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
downstream github | |
git remote add <upstream>/<repo> ssh://[email protected]/<upstream>/<repo>.git | |
git fetch <upstream>/<repo> | |
git checkout master | |
git merge remotes/<upstream>/<repo>/master | |
sync submodules | |
git submodule update --init --recursive | |
resync submodules | |
git submodule foreach git pull origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment