The support say:
Subversion 1.7 or Greater Working Copy
Some users on OS X will recieve the following error message from the command line svn program:
svn: The path ‘.’ appears to be part of a Subversion 1.7 or greater working copy. Please upgrade your Subversion client to use this working copy.
This happens if you have installed SVN 1.7 on your machine, but it is not located in one of the following paths:
/bin
/usr/bin
/usr/local/bin
/opt/subversion/bin
/opt/local/bin
While you may have added the folder that contains the svn binary to your PATH environmental variable in bash, this setting is not loaded when executing Sublime Text.
To fix this error, please perform the following steps:
Open the OS X Terminal
Type the following command: whereis svn
Copy the file path to the svn executable
Open Sublime Text and go to Preferences > Package Settings > SVN > Settings – User
If the file is empty, set the contents to {“svn_binary_path”: “/path/you/copied”}
If the file is not empty, add the following before the closing }: , “svn_binary_path”: “/path/you/copied”
Restart Sublime Text
***1、I do as following steps,but the svn is 1.6 still.
I installed Subversion-Client-1.7.22_10.10.x,and set my PATH environment variable。
echo $PATH
/opt/subversion/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
whereis svn
/usr/bin/svn
***2、when I set the " ,“svn_binary_path”: “/opt/subversion/bin”。 The sublime text3 will notice “”.
Sublime SVN
The binary “/opt/subversion/bin” does not exist or is not executable.
Please check the “svn_binary_path” setting in Preferences > Package Settings > SVN > Settings - User.
*
**3、I want to use svn 1.7, so I can use cornerstone with sublime svn.
Now , when I checkout project with cornerstone,the sublime will notice me:
The Subversion command line client detected on your machine, “/usr/bin/svn”, uses a newer working copy format than the the working copy located at “/Users/XXXXX/Project/server/trunk”.
Please run the “SVN: Upgrade” command to upgrade this working copy.
***4、when upgrade this working copy will show:
***Working copy: /Users/XXXXX/Project
Command: /usr/bin/svn upgrade
svn: E155019: Can’t upgrade ‘/Users/XXXXX/Project’ as it is not a pre-1.7 working copy directory
svn: E000002: Can’t open file ‘/Users/XXXXXX/Project/.svn/entries’: No such file or directory
How to make sublime svn work with svn 1.7??? What must be setting???