github上如何合并别人的pull request

 

https://github.com/Epix37/Hearthstone-Deck-Tracker/issues/1391

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

 

转载于:https://www.cnblogs.com/chucklu/p/4893374.html

你可能感兴趣的:(git,开发工具)