github上如何合并别人的pull request
I fetch the code from your repository, loop the following steps
step1: create a branch on the last commit of the third party,and swicth to the new branch step2:rebase the new branch onto master step3:checkout back to the master,then merge new branch[no fastword] then git log graph like this :
在别人的提交请求的最后一个commit上,创建分支temp
切换到temp分支
然后在这个分支上git rebase mater
切换到master然后 git merge temp
I fetch the code from your repository, loop the following steps step1: create a branch on the last commit of the third party,and swicth to the new branch step2:rebase the new branch onto master step3:checkout back to the master,then merge new branch[no fastword] then git log graph like this : 在别人的提交请求的最后一个commit上,创建分支temp 切换到temp分支 然后在这个分支上git rebase mater 切换到master然后 git merge temp