hgbook

changeset 940:1dc7475ccab1

Work in progress on tour-basic
author Romain PELISSE <belaran@gmail.com>
date Mon Feb 16 18:24:25 2009 +0100 (2009-02-16)
parents 99b93caf2db2
children afdc168fa06c
files fr/tour-basic.tex
line diff
     1.1 --- a/fr/tour-basic.tex	Mon Feb 16 14:53:05 2009 +0100
     1.2 +++ b/fr/tour-basic.tex	Mon Feb 16 18:24:25 2009 +0100
     1.3 @@ -279,30 +279,32 @@
     1.4  
     1.5  \subsection{Informations détaillées}
     1.6  
     1.7 -While the summary information printed by \hgcmd{log} is useful if you
     1.8 -already know what you're looking for, you may need to see a complete
     1.9 -description of the change, or a list of the files changed, if you're
    1.10 -trying to decide whether a changeset is the one you're looking for.
    1.11 -The \hgcmd{log} command's \hggopt{-v} (or \hggopt{--verbose})
    1.12 -option gives you this extra detail.
    1.13 +Si le résumé affiché par \hgcmd{log} est utile si vous savez déjà ce 
    1.14 +que vous cherchez. Vous aurez probablement besoin de voir un description
    1.15 +complète du changement, ou une liste des fichiers modifiés. Si vous 
    1.16 +cherchez à déterminer si ce \textit{changeset} est bien celui que vous
    1.17 +recherchez. L'option \hgopt{-v} de la commande \hgcmd{log} (ou 
    1.18 +\hgopt{--verbose}) vous donne des informations supplémentaires.
    1.19  \interaction{tour.log-v}
    1.20  
    1.21 -If you want to see both the description and content of a change, add
    1.22 -the \hgopt{log}{-p} (or \hgopt{log}{--patch}) option.  This displays
    1.23 -the content of a change as a \emph{unified diff} (if you've never seen
    1.24 -a unified diff before, see section~\ref{sec:mq:patch} for an overview).
    1.25 +Si vous voulez voir à la fois la description et le contenu d'une 
    1.26 +modification, ajouter l'option \hgopt{log}{-p} (ou \hgopt{log}{--patch}). 
    1.27 +Ceci affiche le contenu d'une modification comme un \emph{diff unifié}
    1.28 +\footnote{NdT: \textit{unified diff}} (si vous n'avez jamais vu de diff 
    1.29 +unifié avant, consulter la section~\ref{sec:mq:patch} pour rapide
    1.30 +survol).
    1.31  \interaction{tour.log-vp}
    1.32  
    1.33 -\section{All about command options}
    1.34 -
    1.35 -Let's take a brief break from exploring Mercurial commands to discuss
    1.36 -a pattern in the way that they work; you may find this useful to keep
    1.37 -in mind as we continue our tour.
    1.38 -
    1.39 -Mercurial has a consistent and straightforward approach to dealing
    1.40 -with the options that you can pass to commands.  It follows the
    1.41 -conventions for options that are common to modern Linux and Unix
    1.42 -systems.
    1.43 +\section{Tout sur les options de commandes}
    1.44 +
    1.45 +Avant d'aller plus loin sur le fonctionnement des commandes de Mercurial,
    1.46 +étudions un moment comment elles fonctionnent de manière générale, vous
    1.47 +trouverez ça probablement utile pour la suite de notre parcours.
    1.48 +
    1.49 +Mercurial a une manière approche directe et cohérente pour interpréter
    1.50 +les options que vous passez aux commandes. Il suit une convention commune
    1.51 +à la plupart des systèmes Unix et Linux modernes.
    1.52 +
    1.53  \begin{itemize}
    1.54  \item Every option has a long name.  For example, as we've already
    1.55    seen, the \hgcmd{log} command accepts a \hgopt{log}{--rev} option.