📜  将您的 Git Fork 同步到原始存储库 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:04.100000             🧑  作者: Mango

代码示例1
$ git remote add upstream https://github.com/[Original Owner Username]/[Original Repository].git
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git push