[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Initial Layout Questions

From: C. Michael Pilato <cmpilato_at_collab.net>
Date: 2004-02-16 17:06:50 CET

"Bryan Andrews" <bandrews@trendinfluence.com> writes:

> This apparently is a problem. I cannot check out this directory over
> the current directory as subversion reports: "This object already
> exists in respect to a directory."
>
> Any thoughts on this?

> So if I have an existing directory:
>
> D:\Projects\MyProject
>
> And I import this into http://svnserver/projects/trunk/MyProject
>
> Then I try to check it out to the same folder
> (D:\Projects\MyProject) is this going to cause a problem? This is
> where my web apps build and live for testing and dev (Vdirs point to
> it). Dp I need to move them into a temp directory then check out
> into the original location so the files live in the correct place?
> Or can I just check out over the top of the files already sitting
> there?
>
> Also I have dlls that live in the bin directory that I may or may
> not want to check in, but if I don't want to it says its going to
> delete them - is that my only option? Delete them from the working
> folder or check them into sourcesafe?

If I were you, I wouldn't use import. I would do this:

  $ svn mkdir -m "Make a project root and initial layout for MyProject" \
        http://svnserver/projects/MyProject \
        http://svnserver/projects/MyProject/trunk \
        http://svnserver/projects/MyProject/tags \
        http://svnserver/projects/MyProject/branches
  $ cd D:\Projects\MyProject
  $ svn co http://svnserver/projects/MyProject/trunk .
  
And then start using 'svn add' (and maybe 'svn revert' if you
accidentally schedule something for addition that you didn't want
to). Finally, 'svn commit' it all up.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Feb 16 17:07:53 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.