Re: wxEuphoria Documentation
- Posted by Matt Lewis <matthewwalkerlewis at ?mail.?om> Sep 24, 2007
- 604 views
c.k.lester wrote: > > I'd be glad to help. Tell me what I need to do. And I don't know how to use > SVN, yet. :( Jason Gade wrote: > > I'm interested, but I'm a big procrastinator. I'll try to help with doc or C++ > if needed. (Not that I'm very good at C++). > OK, I've added you guys to the project. :) Here's the link to download a windows installer of the latest svn release (if you're on linux or bsd, just use your package manager): http://subversion.tigris.org/downloads/1.4.5-win32/apache-2.2/svn-python-1.4.5.win32-py2.5.exe It's pretty easy to get started. You shouldn't need to do anything fancy. Just check out, update and commit. I recommend browsing the docs that come with subversion. They're pretty good. Basically, to get started, open a command prompt wherever you're going to work (should be an empty directory) and type: > svn co https://wxeuphoria.svn.sourceforge.net/svnroot/wxeuphoria/wxeu/trunk . Whenever you sit down to work, you'll want to do an: > svn up up = update. That will fetch any code updates that anyone else has done. When you're ready to upload: > svn ci -m "some message about what you've done" Those are the basics to get started using svn. Thanks, Matt