web-dev-qa-db-fra.com

Comment récupérer un seul fichier depuis github en utilisant git

J'aimerais en savoir plus sur ce code, mais je ne parviens pas à l'importer dans mon ordinateur. Comment pourrais-je cloner ce fichier avec git? Le fichier est simplement:

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

Merci!

3
J.Doe

Vous pouvez obtenir ce fichier en utilisant wget:

  1. Créer un répertoire:

    mkdir mypycode
    
  2. Changer dans ce répertoire:

    cd mypycode
    
  3. Utilisez wget pour le télécharger:

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

Je suggère la commande suivante:

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