LoginSignup
0
1

More than 1 year has passed since last update.

github 特定のディレクトリ(フォルダ)、ファイルをダウンロードする方法

Posted at

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

***

参考

subversionの使い方
githubから抽出ダウンロード

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