Reputation: 617
I am new to git. We are converting our project from svn to git.
We have a github. We started converting demo projects. I started the conversion process like this
git svn clone
command in my MACHow do I do that? Or else please suggest me if there is a different way
Upvotes: 1
Views: 115
Reputation: 7184
Issuing these commands in your local repository will populate your new github project:
git remote add origin https://github.com/user/repo
git push origin master
Replace user/repo
with your github username and the project name. You will be asked for your github username and password.
Upvotes: 1