LoginSignup
0
0

More than 5 years have passed since last update.

MACで、SVNコマンドでcheckoutできないとき

Last updated at Posted at 2018-12-17

MACで、subversion上のファイルをCheckOutしようとすると失敗

$svn co svn+ssh://svn.xxx.com/var/svn/productA/branches/asp
svn: E000009: Can't write to stream: Bad file descriptor

subversionのversionが新しいと失敗する場合があり(文字コードの問題?)。
以下でsubversionをダウングレード(1.10.0→1.8.19)

$svn --version
svn, version 1.10.0 (r1827917)
$brew install subversion18
$echo 'export PATH="/usr/local/opt/subversion@1.8/bin:$PATH"' >>
$. ~/.bash_profile
$svn --version
svn, version 1.8.19 (r1800620)

正常にCheckOutできるようになる

0
0
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
0
0