--branch
peut également prendre des balises et détache le HEAD à cette validation dans le référentiel résultant.
J'ai essayé
git clone --branch <tag_name> <repo_url>
Mais ça ne marche pas. Il retourne:
warning: Remote branch 2.13.0 not found in upstream Origin, using HEAD instead
Comment utiliser ce paramètre?
git clone --branch <tag_name> <repo_url>
Cette commande n'est pas supportée dans git 1.7.9.5.
J'utilise git 1.8.3.5 et ça marche
Utilisez l'option --single-branch
pour niquement l'historique des clones conduisant au sommet de la balise. Cela évite la duplication de beaucoup de code inutile.
git clone <repo_url> --branch <tag_name> --single-branch
git clone -b 13.1rc1-Gotham --depth 1 https://github.com/xbmc/xbmc.git
Cloning into 'xbmc'...
remote: Counting objects: 17977, done.
remote: Compressing objects: 100% (13473/13473), done.
Receiving objects: 36% (6554/17977), 19.21 MiB | 469 KiB/s
Sera plus rapide que:
git clone https://github.com/xbmc/xbmc.git
Cloning into 'xbmc'...
remote: Reusing existing pack: 281705, done.
remote: Counting objects: 533, done.
remote: Compressing objects: 100% (177/177), done.
Receiving objects: 14% (40643/282238), 55.46 MiB | 578 KiB/s
Ou
git clone -b 13.1rc1-Gotham https://github.com/xbmc/xbmc.git
Cloning into 'xbmc'...
remote: Reusing existing pack: 281705, done.
remote: Counting objects: 533, done.
remote: Compressing objects: 100% (177/177), done.
Receiving objects: 12% (34441/282238), 20.25 MiB | 461 KiB/s
Utilisez la commande
git clone --help
pour voir si votre git supporte la commande
git clone --branch tag_name
Sinon, procédez comme suit:
git clone repo_url
cd repo
git checkout tag_name