Reputation: 21
I'm starting this discusion, because i want to learn how to upload my projects in github or codeplex.
Subversion -> Add Solution to Subversion...
One of more of your local resources are out of date. You need to run update before proceed with the operation.
My questions are:
If I wasn't clear, I can upload pictures with the steps how I get this error.
Thanks for the chanse to answer this question. For me will be great anyone to answer on any question that I posted. Thanks.
Upvotes: 2
Views: 1124
Reputation: 787
I know this is a very old question but answering this question incase someone else is trying to make this work. I had to get this working and this is what worked for me.
Create a repo in github (initialise it with a readme file etc).Or use an existing one
From the repository page, copy the Subversion checkout URL (Make sure this is the Subversion checkout URL and not the HTTPS or SSH URL)
Open/Create project you want to add and select File -> SubVersion -> Add Solution to Subversion
In the following window, enter the Repository Url that you have copied in step 2
Select the trunk of Subversion Repository you created and click Ok.
Thats it. you can now check in and out of the github repository using anknsvn fromt he pending changes window in visual studio
Upvotes: 0
Reputation: 1770
To use subversion client with Github following support link should help https://help.github.com/articles/support-for-subversion-clients
Apart from this I would suggest you to use Github's windows client or 'SourceTree' and make a git repository instead of a subversion repository.
Upvotes: 0
Reputation: 284786
I use the command line. This tutorial is very well regarded. You can also try Git Extensions, which is a GUI integrated into Visual Studio.
Although Github has experimental support for the SVN protocol, I would not recommend it for anything serious.
Upvotes: 1