我从git(dannycoates / v8-profiler)克隆了一些存储库,安装时出现了链接错误。我看到有人提交了一个拉取请求,假设要修复此错误。 现在我想尝试将此修复程序拉入我的私有本地仓库,我想知道使用哪个命令。 拉取请求标题为:
piaohai wants to merge 38 commits into dannycoates:master from piaohai:3.6.2
在这种情况下我可以使用git pull吗?我该怎么用呢?
谢谢, 李
答案 0 :(得分:1)
克隆存在拉取请求的存储库,获取其分支,确保您在指定请求的同一分支上(在本例中为master),合并其更改。
git remote add piaohai git://github.com/piaohai/v8-profiler.git
git fetch piaohai
git checkout master
git merge piaohai/3.6.2