该工作副本需要颠覆的一个较新版本的Xcode比支持(The working copy require

2019-08-17 06:14发布

我刚安装Xcode 4.6 (我Xcode 4.5.1 )。 我只是开了一个现有的项目,得到了这样的信息:

工作副本“路径/要/我的项目”,需要颠覆的一个较新版本的Xcode比支持。

我目前使用的基石 SVN,又明白我大概可以忽略此消息-但因为我想了最新的,有什么事情我需要做来解决这个问题?

Answer 1:

Xcode的4.6默认使用SVN 1.6.x版,但你项目的SVN信息也许1.7.X(可以通过更新的基石)。 因此,当您尝试更新,错误message'll显示。 因此,我们必须让Xcode中使用最新的1.7.X SVN。


我也遇到了同样的问题。 这是我的解决方案:

  1. 安装家酿,我们将用它来安装最新的SVN:

    红宝石-e “$(卷曲-fsSL https://raw.github.com/mxcl/homebrew/go )”

  2. 安装最新的SVN:

    BREW安装Subversion

  3. 备份旧的SVN文件和链接最新的SVN:

     cd /Applications/Xcode.app/Contents/Developer/usr/bin/ mkdir bak.svn mv svn* bak.svn ln -s /usr/local/Cellar/subversion/1.7.8/bin/svn* /Applications/Xcode.app/Contents/Developer/usr/bin/ 
  4. 重新启动的Xcode


Answer 2:

就我而言,最新的SVN放置在目录/ usr / bin中/,因此第3步将是这样的:

cd /Applications/Xcode.app/Contents/Developer/usr/bin/        
mkdir bak.svn
mv svn* bak.svn
ln -s /usr/bin/svn* /Applications/Xcode.app/Contents/Developer/usr/bin/


文章来源: The working copy requires a newer version of Subversion than Xcode supports