GitHub clone from pull request?

你离开我真会死。 提交于 2019-11-26 15:01:46

问题


I would like to clone a repository from GitHub. The problem is I don't want the main branch; I want the version in this unapproved pull request.

Is it possible for me to clone the pull request version instead of the main repository?


回答1:


You can clone the branch you want by using the -b option in the git clone command.

In your case, the branch you want to clone is the source branch of the pull request (feature/mongoose-support):

git clone https://github.com/berstend/frappe.git -b feature/mongoose-support /my_clone



回答2:


The easiest way to do that is like this:

git fetch origin pull/2/head
git checkout -b pullrequest FETCH_HEAD

You will now be on a new branch that is on the state of the pull request.




回答3:


git fetch origin refs/pull/PR_NUMBER/head:NEW_LOCAL_BRANCH

eg:

$ git fetch origin pull/611/head:pull_611
$ git checkout pull_611

Make changes, commit them, PUSH and open new PR from your fork on GitHub




回答4:


You could follow the directions in this gist to be able to check out the remote directly without having to figure out their repository and branch.

Example usage

For one of my projects (github3.py) I have the following in my github3.py/.git/config

[remote "github"]
    fetch = +refs/heads/*:refs/remotes/github/*
    fetch = +refs/pull/*/head:refs/remotes/github/pr/*
    url = git@github.com:sigmavirus24/github3.py

The first line is what is standard for every remote with the exception that github is replaced by the remote's name. What this means is that remote heads (or the heads of branches on that server) are "mapped" to local remotes prefixed by github/. So if I did git fetch github and had a branch on GitHub that wasn't already noticed locally on my machine, it would download the branch and I could switch to it like so: git checkout -t github/branch_name.

The second line does the same thing, but it does it for pull requests instead of standard git branches. That's why you see refs/pull/*/head. It fetches the head of each pull request on GitHub and maps it to github/pr/#. So then if someone sends a pull request and it is numbered 62 (for example), you would do:

git fetch github
git checkout -t github/pr/62

And then you would be on a local branch called pr/62 (assuming it didn't already exist). It's nice and means you don't have to keep track of other people's remotes or branches.




回答5:


When a user submits a pull request, they are asking for some changes to be merged from a branch on their clone of a fork back to another user's repository.

The changes you want can be got from the source of the pull request. To do this, clone the user's repository (git://github.com/berstend/frappe.git), and then check out the branch he created the pull request from (feature/mongoose-support).




回答6:


git clone git://github.com/dweldon/frappe
cd frappe
git pull origin pull/2/head

How can I fetch an unmerged pull request for a branch I don't own?




回答7:


After installing git-extras

(cd /tmp && git clone --depth 1 https://github.com/tj/git-extras.git && cd git-extras && sudo make install)

You can simply use git pr

$ git pr 62 [remote]



回答8:


That pull request shows the commits from that person's fork so you can see that he is pushing his changes from feature/mongoose-support branch.

You can clone his repository and checkout that branch



来源:https://stackoverflow.com/questions/14947789/github-clone-from-pull-request

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!