I\'d like to add a symbolic link to subversion and when I do a checkout all it does is add the same symbolic link right to my checkout but I\'m afraid to add it if that\'s n
When a symlink is committed into a Subversion repository, Subversion remembers that the file was in fact a symlink, as well as the object to which the symlink “points.”
When that symlink is checked out to another working copy on a non-Windows system, Subversion reconstructs a real filesystem-level symbolic link from the versioned symlink.
But that doesn't in any way limit the usability of working copies on systems such as Windows that do not support symlinks. On such systems, Subversion simply creates a regular text file whose contents are the path to which the original symlink pointed. While that file can't be used as a symlink on a Windows system, it also won't prevent Windows users from performing their other Subversion-related activities.
Taken from svn-book
Well...I'm not sure of the technical answer or what the ramifications might be, but I just tried it. I created a sym link to a dir in a checkout I had. Added and committed it. Nuked the whole checkout. Re-checked it out and the sym link is still there with the appropriate link.
Hope that will suffice for your worries ;)