#Subversion
###インストール方法
brew install subversion
###githubの特定のフォルダーをダウンロード
svn export URL
#example)
svn export https://github.com/rasbt/python-machine-learning-book-3rd-edition/tree/master/ch13/cat_dog_images
※しかし、これでは、 「このURLは存在しません。」 とエラーが出る。
###エラー回避法
githubのURLの tree/master をtrunkに書き換えるとできる。
svn export https://github.com/rasbt/python-machine-learning-book-3rd-edition/trunk/ch13/cat_dog_images
***
###参考