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.