git fork之后,如何保持代码的更新.
第一步:将源添加到一个更新的组里面.(这里认为你已经clone下来你的项目)
添加的名字可以随意,与后面操作一致即可.1
git remote add updateOrigin https://github.com/更新源的地址.git
第二步:更新 updateOrigin 代码到最新.1
git fetch updateOrigin
第三步:合并最新代码到你的master.1
git merge updateOrigin/master
第四步:提交变更到master.1
git push origin master