http://subversive.cims.nyu.edu/exact/corelib2/trunk/
> svn checkout --depth immediates \ https://subversive.cims.nyu.edu/exact/corelib2/trunk \ core2Now "core2" has all the top-level files and folders of Core Library.
> cd core2 > make zerothFinally, follow the instructions in the README file in core2 to compile the basic programs in Core Library.
> cd core2/progs/ > svn checkout --depth immediates \ https://subversive.cims.nyu.edu/exact/corelib2/trunk/progs/robotics \ robotics > cd roboticsYou can see what are the projects under "robotics". E.g., if you see "disc" and decide to download the entire "disc" project, do this:
> cd core2/progs/robotics > svn checkout --depth infinity \ https://subversive.cims.nyu.edu/exact/corelib2/trunk/progs/robotics/disc \ disc
>export SVN_EDITOR=vimDefine the SVN_ROOT for convenient access (using the https protocol, assuming your user name is "yap"):
>export SVN_ROOT=https://yap@subversive.cims.nyu.edu/exact
>svn checkout $SVN_ROOT/corelib2/trunk [myCoreLib]
>svn update [fileName]Update ensures you have the latest version of [fileName]. Using an editor, resolve any conflicts in [fileName], then tell svn that they have been resolved, and finally commit your changes:
>svn resolved [fileName]
>svn commit [fileName]
>svn add [file-or-dirname]
>svn delete [file-or-dirname]
>svn move [orig-filename] [new-filename]
>svn copy [source-filename] [destination-filename]
>cd NEWDIRNote that PATH is optional (defaults to ".").
>svn import [PATH=.] https://subversive.cims.nyu.edu/exact/collab/etc/etc.
>svn co --depth=immediates $(SVN_ROOT)/foobar [LOCALDIR]will checkout only the top-level files. Instead of "immediates", try "files" or "empty". (Default is "infinity")