How to deploy a non-github repo to github without cloning in my system?

Is there a way to deploy non-github relay to a git hub since I have a slow connection, I cannot afford to clone my system and click on github

thanks,

+4
source share
3 answers

You can clone it to a remote server using SSH and then push it to github, but this is the only option I know of.

Alternatively, look if someone else has added it by opening the source code, then you can fork it on github and just push a much smaller set of updates from your local machine. If you know someone else with a fast connection, you can ask them to do it for you or download it, and then change the ownership of the repo for you.

+5
source

I do not know how to do this if the repository is not SVN, in which case you can use the Import from Subversion feature.

+2
source

If you have a shell on an existing host, you can click it on Github

0
source

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


All Articles