This text is a work in progress—highly subject to change—and may not accurately describe any released version of the Apache™ Subversion® software. Bookmarking or otherwise referring others to this page is probably not such a smart idea. Please visit http://www.svnbook.com/ for stable versions of this book.
svnlook tree — Afficher l'arborescence.
svnlook tree CHEMIN_DÉPÔT
[CHEMIN_DANS_DÉPÔT]
Afficher l'arborescence, en commençant par
CHEMIN_DANS_DÉPÔT
(s'il est fourni, sinon
à partir de la racine) en affichant optionnellement les identifiants
de révision des nœuds.
Afficher l'arborescence pour la révision 13 de notre dépôt de test :
$ svnlook tree -r 13 /var/svn/depot / trunk/ bouton.c Makefile entier.c branches/ librairie/ bouton.c Makefile entier.c …
Utiliser l'option --show-ids
pour afficher
également les identifiants des nœuds de révision (identifiants
uniques internes créés par l'implémentation du système de fichiers
interne de gestion de versions de Subversion) :
:
$ svnlook tree -r 13 /var/svn/depot --show-ids / <0.0.r13/811> trunk/ <1.0.r9/551> bouton.c <2.0.r9/238> Makefile <3.0.r7/41> entier.c <4.0.r6/98> branches/ <5.0.r13/593> librairie/ <1.1.r13/390> bouton.c <2.1.r12/85> Makefile <3.0.r7/41> entier.c <4.1.r13/109> …
Pour obtenir un affichage pouvant être analyser par des
programmes, utilisez l'option --full-paths
, ce qui
produit l'affichage du chemin complet pour chaque élément de
l'arborescence et n'utilise pas d'indentation pour matérialiser la
hiérarchie :
$ svnlook tree -r 13 /var/svn/repos --show-ids --full-paths / <0.0.r13/811> trunk/ <1.0.r9/551> trunk/bouton.c <2.0.r9/238> trunk/Makefile <3.0.r7/41> trunk/entier.c <4.0.r6/98> branches/ <5.0.r13/593> branches/librairie/ <1.1.r13/390> branches/librairie/bouton.c <2.1.r12/85> branches/librairie/Makefile <3.0.r7/41> branches/librairie/entier.c <4.1.r13/109> …