web-dev-qa-db-ja.com

gitを使用してgithubから単一のファイルを取得する方法

このコードについて詳しく知りたいのですが、自分のコンピューターにインポートすることはできません。このファイルをgitでクローンするにはどうすればよいですか?ファイルは単純です:

https://github.com/tensorflow/tensorflow/blob/r1.1/tensorflow/examples/tutorials/mnist/mnist_softmax.py. 

ありがとう!

4
J.Doe

wgetを使用してそのファイルを取得できます:

  1. ディレクトリを作成します。

    mkdir mypycode
    
  2. そのディレクトリに移動します。

    cd mypycode
    
  3. wgetを使用してダウンロードします。

    wget https://raw.githubusercontent.com/tensorflow/tensorflow/r1.1/tensorflow/examples/tutorials/mnist/mnist_softmax.py
    
4
George Udosen

次のコマンドをお勧めします。

git archive [email protected]:foo/bar.git HEAD |  tar xvf - path/to
2
ejammes