Deutsch   English   Français   Italiano  
<sttt2t$1eoc$1@gioia.aioe.org>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.mixmin.net!aioe.org!299gYy2nqWB43X4cCBV6zg.user.46.165.242.91.POSTED!not-for-mail
From: Matthieu <matthieu@x.localhost>
Newsgroups: fr.comp.os.linux.configuration
Subject: Re: nom =?UTF-8?B?ZCdow7R0ZQ==?= non =?UTF-8?B?c3VwcG9ydMOp?= avec
 subversion commande svn
Date: Tue, 8 Feb 2022 15:01:00 +0100
Organization: Aioe.org NNTP Server
Message-ID: <sttt2t$1eoc$1@gioia.aioe.org>
References: <20220208142609.4a5112ff@debian>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Injection-Info: gioia.aioe.org; logging-data="47884"; posting-host="299gYy2nqWB43X4cCBV6zg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
X-Notice: Filtered by postfilter v. 0.9.2
Bytes: 1662
Lines: 27

Le 08.02.2022 =C3=A0 14:26 Pat Pato a =C3=A9crit:
> La commande suivante devrait donner un r=C3=A9sultat en th=C3=A9orie
> svn checkout file://127.0.0.1/var/svn/repos

file:// signifie "c'est un fichier local"... or "127.0.0.1" implique
un acc=C3=A8s r=C3=A9seau. Il faut choisir. Donc soit (pour un acc=C3=A8s v=
ia fs):

svn co file:///var/svn/repos mon_depot

soit (si svnserve est en =C3=A9coute):

svn co svn://127.0.0.1/var/svn/repos mon_depot

Dans ce second cas, le chemin pr=C3=A9sent=C3=A9 pourrait =C3=AAtre simplif=
i=C3=A9 avec
"svnserve -d -r /var/svn", alors le checkout serait celui-ci:

svn co svn://127.0.0.1/repos mon_depot


Le manuel svn est tr=C3=A8s bien fait, ne pas h=C3=A9siter =C3=A0 le consul=
ter:
https://svnbook.red-bean.com/index.fr.html


Matthieu