if you’re not in the working copy directly, or explicitly telling it where the “working copy” is, it assumes the CWD.
For example:
You have terminal-ed in to: /root or /home/jhales
If you run svn up from here, but the working copy is in /root/svn or /home/jhales/svn it will give the error:
[code][jhales@localhost ~] $ svn up
svn: warning: ‘.’ is not a working copy
[/code]
if you cd into the proper directory as such:
[code][jhales@localhost ~] $ cd svn
[jhales@localhost ~/svn] $ svn up[/code]
You shouldn’t have any issues.
Or explicitly set the “working directory”
[code][jhales@localhost ~] $ svn up svn[/code]
You shouldn’t have any issues.