Arackna
Arackna

Reputation: 2805

How to fork a non github repo to github without cloning to my system?

Is there any way to fork a non github repo to git hub, since I have a slow connection I can't afford it to clone to my system and push to github

thanks,

Upvotes: 4

Views: 560

Answers (3)

Lazy Badger
Lazy Badger

Reputation: 97375

If you have shell on existing host you can push from it to Github

Upvotes: 0

Matt Gibson
Matt Gibson

Reputation: 14959

You could clone it to a remote server using SSH and then push it to github from there, but that's the only option I know of.

Alternatively, look to see if someone else has already uploaded it if it's open source, then you can fork it on github and just push the much smaller set of updates from your local machine. If you know someone else with a fast connection, you could ask them to do this for you, or else upload it and then change ownership of the repo to you.

Upvotes: 5

dbr
dbr

Reputation: 169693

I'm not aware of any way to do this, unless the repository is SVN, in which case you can use the Import from Subversion feature.

Upvotes: 2

Related Questions