recherche

Maison  >  Questions et réponses  >  le corps du texte

Git如何将打了某个Tag的文件全部导出?

如题,比如某个版本我打了 1.0 的 tag,我想导出 1.0 所有的文件,如何操作?

PHPzPHPz2801 Il y a quelques jours793

répondre à tous(2)je répondrai

  • PHPz

    PHPz2017-04-21 10:58:59

    Si le nom de votre tag est 1.0, vous pouvez l'exporter comme suit.

    1. Exporter et compresser au format zip :

    $ git archive --format=zip --output=v1.0.zip 1.0

    2. Exporter et compresser au format tar.bz2 :

    $ git archive 1.0 | bzip2 > v1.0.tar.bz2

    3. Exporter et compresser au format tar.gz :

    $ git archive --format=tar 1.0 | gzip > v1.0.tar.gz

    répondre
    0
  • 巴扎黑

    巴扎黑2017-04-21 10:58:59

    Afficher les balises existantes
    git tag -l

    Passer à un tag
    git checkout tag_name

    répondre
    0
  • Annulerrépondre