here is the pull request I would like https://github.com/OpenKore/openkore/pull/3802/files I want to download like it as its own separate project. How do I go about doing that? I don't see any button for that functionality
but I have no idea how to get the entire project from that commit... Can someone please tell me how to do this? btw im on windows How can I download github "pull requests" files? thank you
Try the following steps in your terminal:
Here's the explanation:
git clone [email protected]:OpenKore/openkore.git: clone the project from remote to local, you don't need to do so if you have done it already.cd openkore: enter the folder of this project.git fetch origin --prune: check all the updates in the remote repo.git checkout -b bugfix/remove-processcheckmonster origin/bugfix/remove-processcheckmonster: create a local branchbugfix/remove-processcheckmonsterand link it to the remote branchorigin/bugfix/remove-processcheckmonster, which refers to the pull request you mentioned. The name of local branchbugfix/remove-processcheckmonstercan be changed to any name you like.git status: check whether you are on the correct branch, according your question, it should show something like this: