Question: Is it possible to svn a symlink and the link is pointing to something in my home directory so that when my other co-workers performs an svn update they will see the symlink pointing to their home directory instead?
Example:
In this directory: /home/arthur/scripts/test/perl, I want to create a symlink that is something like this: ln -s /home/arthur/scripts/test/ test
So, if I do a ls on /home/arthur/scripts/test/perl, it will show me something like this...
files... test -> /home/arthur/scripts/test/ files...
But when I try to svn this, my other co-workers sees the symlink as something that is still pointing to my home directory. Is there a way to dynamically have the symlink point to their own home directory instead?