Submit a transfer request to GitHub

I have a repo on GitHub, but I do all my devs on local repositories and on the local server when ready to test the server, and only click on GitHub when "live"

But what I want todo is to click on the local server for testing and instead of clicking on GitHub, I would rather send GitHub a pull request to pull from my server

Is it possible, or so I need to click on another GitHub branch and then execute a gap request between branches or set up a completely different GitHub repo and then pull the request out of this

I can't be the only one who works like that

+4
source share
1 answer

Pull Requests are GitHub specific and can only be run in repos or between repositories in GitHub. It is not possible to configure a transfer request from a local repo to one of GitHub.

Since you use your repositories as a gateway in which you perform some validation, I would suggest having another GitHub repo to which you click and configure a request to transfer from this to your live repo.

+6
source

Source: https://habr.com/ru/post/1383959/


All Articles