3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

githubから特定のファイルだけダウンロードする方法

Posted at

作業中何故か特定のファイルだけ削除してしまったので
gitからそこだけダウンロードしたので方法を記録。
#terminalでwgetコマンドを使う
###githubを開く
github内で該当ファイルを開き、右上にある「Raw」ボタンを押す。

すると中身のコードが記述された画面が表示されるので
そのページのURLをコピーする。

###terminalを開く
$wget [コピーしたURL] -P [保存先URL]

これでカレントディレクトリに該当ファイルをダウンロードできる。
スクリーンショット 2020-07-22 15.10.29.png

▼wgetオプションによる保存先指定
https://orebibou.com/ja/home/201610/20161020_002/

この方法だとフォルダごとのダウンロードは不可。
svnを利用した方法などがあるようですがそれは後日追記することにします。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?