Andrew Savige writes: > # pwd > /home/andrew/mypugs/examples > # ls -l golf > total 28 > -rwxr-xr-x 1 andrew andrew 47 Mar 13 11:14 head.p6 > -rwxr-xr-x 1 andrew andrew 91 Mar 13 11:14 mid.p6 > -rwxr-xr-x 1 andrew andrew 70 Mar 13 11:14 rev.p6 > -rwxr-xr-x 1 andrew andrew 96 Mar 13 11:14 tail.p6 > -rwxr-xr-x 1 andrew andrew 4877 Mar 13 11:52 tsanta.pl > -rwxr-xr-x 1 andrew andrew 100 Mar 13 11:14 wc.p6 > > I plan on issuing the command: > > # svn import golf http://svn.openfoundry.org/pugs/examples/golf -m "initial > import"
I wouldn't do that. You should be able to do (from the examples/ directory): # svn add golf # make sure all your examples are marked as added # svn commit -m "Added examples/golf, some examples that..." Or you can leave off the -m in commit and it will pop up an editor where you can describe your commit. CVS and Subversion are great, I'm glad you're learning about them. Luke