该篇文章主要用于将fork的项目的新提交同步并merge到本地。
以项目名叫project的为例,假设:
源地址:https://github.com/src/project.git
则我fork之后的地址:https://github.com/liyingxuan/project.git
1. 增加源分支地址到本地项目
cd project
git remote add ProjectName https://github.com/src/project.git
2. fetch源分支到本地
git fetch ProjectName
3. merge两个版本
注意:这里需要本地项目修改先commit
git merge ProjectName/master
4. 提交到我的地址
git push origin master
End.
网友评论