avinash
avinash

Reputation: 11

How to transfer a Subversion repository from localhost to Github?

I have a working svn of my own project in my local machine. I have created a account in Github. Now I want to transfer this svn to Github with all commit logs and history.

Upvotes: 1

Views: 453

Answers (2)

Greg Hewgill
Greg Hewgill

Reputation: 992955

Github has an option when creating a new repository, to import from an existing (public) Subversion repository. However, this only works if Github itself can reach your Subversion repository. Since your Subversion repository exists only on your local machine, you may find it easier to convert the repository to Git format first, then upload it to Github (which you can do with a simple git push).

Upvotes: 0

Related Questions