当前位置:  开发笔记 > 开发工具 > 正文

可以从github上挑选所有PR(pull request)吗?

如何解决《可以从github上挑选所有PR(pullrequest)吗?》经验,为你挑选了1个好方法。

是否可以从github上挑选所有待处理的PR?

假设我有来自4个不同的分支存储库的4个PR等待审核。我需要将所有这些都应用于最新的源代码。

PR#65 Do something
PR#61 Notify this
PR#55 Fix that
PR#42 Show there

我知道我可以将git remote add所有存储库一一挑选。但是,我相信会有一种更容易/更快捷的方式来挑选所有尚不知道的待处理的拉取请求;)

提前致谢



1> RNA..:

简而言之:

将pr / *添加到.git / config


详细:

假设存储库已命名 test_repo

$ git remote -v
test_repo     http://github/testA.git (fetch)
test_repo     http://github/testA.git (push)

1.打开git config

vim .git/config

2.在下面添加以下行 [remote "test_repo"]

fetch = +refs/pull/*/head:refs/remotes/test_repo/pr/*

所以看起来像

[remote "test_repo"]
url = http://github/testA.git
fetch = +refs/heads/*:refs/remotes/test_repo/*
fetch = +refs/pull/*/head:refs/remotes/test_repo/pr/*  <-- this line was added

3.“ git fetch”也将获取PR

$ git fetch test_repo

 * [new ref]         refs/pull/16/head -> test_repo/pr/16
 * [new ref]         refs/pull/17/head -> test_repo/pr/17
 * [new ref]         refs/pull/18/head -> test_repo/pr/18
 * [new ref]         refs/pull/19/head -> test_repo/pr/19

4.现在您可以选择/结帐至PR #xx

git cherry-pick test_repo/pr/xx 

推荐阅读
kikokikolove
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有