拉取代码
1、fork项目
在github或gitee页面上, 点击fork按钮, 将B的项目拷贝一份到A自己的代码仓库中.
2、clone项目,并添加远程项目路径
克隆A自己的代码仓库到本地.
git clone https://github.com/A/A.git
查看项目远程仓库配置,如果没有源的地址则新增
git remote -v
添加源项目地址
将B的项目作为最新代码的参考标准(upstream 是上游仓库的别名,别名随意命名)
git remote add upstream https://github.com/B/B.git
确认是否添加成功
git remote -v
获取源项目的更新
git fetch upstream
git remote add origin https://gitee.com/northeast-big-bared-flower/kd-osysteam.git
git pull
git push -u -f origin master
当自己fork的仓库更新时,需要
git fetch upstream
git merge upstream/master