⌨️

Github上のリポジトリの特定のディレクトリ以下のFolderをダウンロードする方法

2022/01/25に公開

#雑メモです。

TL;DR

Subversionを利用して、特定のディレクトリツリーをダウンロードする。

svn export [URL]/trunk/[dir]

例)こちらのディレクトリをダウンロードしたい場合
https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/quickstart/csharp/dotnet

https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/quickstart/csharp/dotnet

svn export https://github.com/Azure-Samples/cognitive-services-speech-sdk/trunk/quickstart/csharp/dotnet

結論

git cloneをsvn exportコマンドに変え、/tree/master/ (or /tree/main/)を/trunk/に変えるだけですね。

最後に

たまに、「あれ、どうやって書くんだっけ?」となってて、別の場所にメモしておいたのですが、一応、こちらにメモ移動させました。
こういう一部の文字列置換してコマンドを実行する系は、DevToysのようにGUIツールがあっても便利かもしれませんね。
https://devtoys.app/

読んで頂きましてありがとうございました😊
ご質問やご感想などありましたら、ぜひTwitter (@shisyu_gaku) までお気軽にお問い合わせください。

Discussion