LoginSignup
2
3

More than 5 years have passed since last update.

Xcode で 新しい subversion を使う

Posted at

課題

Xcodeが標準でサポートしているものよりも新しいバージョンの Subversion を使いたい。

解決法

Xcode が参照している subversion コマンド群を新しいものと置き換える。
ターミナルを開いて、以下を実行する。

$cd /Applications/Xcode.app/Contents/Developer/usr/bin

オリジナルの subversion コマンド群を残しておく

$sudo mkdir org.svn
$sudo mv svn* org.svn

Homebrew などでインストールした、新しいSVNコマンド群へのシンボリックリンクを作る

$sudo ln -s /usr/local/bin/svn* .

Xcode を再起動する。

これでOK。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3