hgbook

changeset 376:bdaa98efa2f1

Merged changes from jerojasro concerning tour-basic
author Igor TAmara <igor@tamarapatino.org>
date Mon Oct 27 13:46:28 2008 -0500 (2008-10-27)
parents 84944c0ecde6 b73654de597e
children d5f1049a79dd
files es/Leame.1st
line diff
     1.1 --- a/es/Leame.1st	Mon Oct 27 13:44:21 2008 -0500
     1.2 +++ b/es/Leame.1st	Mon Oct 27 13:46:28 2008 -0500
     1.3 @@ -98,7 +98,7 @@
     1.4  || branch.tex      || Igor Támara   ||    100%    || 16/10/2008 ||  19/10/2008 ||
     1.5  || preface.tex     || Javier Rojas  ||    100%    || 18/10/2008 ||  19/10/2008 ||
     1.6  || daily.tex       || Igor Támara   ||    100%    || 19/10/2008 ||  26/10/2008 ||
     1.7 -|| tour-basic.tex  || Javier Rojas  ||    80%     || 19/10/2008 ||             ||
     1.8 +|| tour-basic.tex  || Javier Rojas  ||    87%     || 19/10/2008 ||             ||
     1.9  || undo.tex        || Igor Támara   ||    7%      || 26/10/2008 ||             ||
    1.10  
    1.11  == Archivos en proceso de revisión ==
     2.1 --- a/es/tour-basic.tex	Mon Oct 27 13:44:21 2008 -0500
     2.2 +++ b/es/tour-basic.tex	Mon Oct 27 13:46:28 2008 -0500
     2.3 @@ -564,34 +564,37 @@
     2.4  only in our \dirname{my-hello} repository.  Let's look at a few ways
     2.5  that we can propagate this change into other repositories.
     2.6  
     2.7 -\subsection{Pulling changes from another repository}
     2.8 +\subsection{Jalar cambios desde otro repositorio}
     2.9  \label{sec:tour:pull}
    2.10  
    2.11 -To get started, let's clone our original \dirname{hello} repository,
    2.12 -which does not contain the change we just committed.  We'll call our
    2.13 -temporary repository \dirname{hello-pull}.
    2.14 +Para empezar, clonemos nuestro repositorio \dirname{hello} original,
    2.15 +el cual no contiene el cambio que acabamos de consignar. Llamaremos a
    2.16 +este repositorio temporal \dirname{hello-pull}.
    2.17  \interaction{tour.clone-pull}
    2.18  
    2.19 -We'll use the \hgcmd{pull} command to bring changes from
    2.20 -\dirname{my-hello} into \dirname{hello-pull}.  However, blindly
    2.21 -pulling unknown changes into a repository is a somewhat scary
    2.22 -prospect.  Mercurial provides the \hgcmd{incoming} command to tell us
    2.23 -what changes the \hgcmd{pull} command \emph{would} pull into the
    2.24 -repository, without actually pulling the changes in.
    2.25 +Usaremos el comando \hgcmd{pull} para traer los cambios de
    2.26 +\dirname{my-hello} y ponerlos en \dirname{hello-pull}.  Sin embargo,
    2.27 +traer cambios desconocidos y aplicarlos en un repositorio es una
    2.28 +perspectiva que asusta al menos un poco.  Mercurial cuenta con el
    2.29 +comando \hgcmd{incoming}\ndt{Entrante, o entrantes.} para decirnos qué
    2.30 +cambios \emph{jalaría} el comando \hgcmd{pull} al repositorio, sin
    2.31 +jalarlos.
    2.32  \interaction{tour.incoming}
    2.33 -(Of course, someone could cause more changesets to appear in the
    2.34 -repository that we ran \hgcmd{incoming} in, before we get a chance to
    2.35 -\hgcmd{pull} the changes, so that we could end up pulling changes that we
    2.36 -didn't expect.)
    2.37 -
    2.38 -Bringing changes into a repository is a simple matter of running the
    2.39 -\hgcmd{pull} command, and telling it which repository to pull from.
    2.40 +(Por supuesto, alguien podría enviar más conjuntos de cambios al
    2.41 +repositorio en el tiempo que pasa entre la ejecución de
    2.42 +\hgcmd{incoming} y la ejecución de \hgcmd{pull} para jalar los
    2.43 +cambios, así que es posible que terminemos jalando cambios que no
    2.44 +esperábamos.)
    2.45 +
    2.46 +Traer cambios al repositorio simplemente es cuestión de ejecutar el
    2.47 +comando \hgcmd{pull}, indicándole de qué repositorio debe jalarlos.
    2.48  \interaction{tour.pull}
    2.49 -As you can see from the before-and-after output of \hgcmd{tip}, we
    2.50 -have successfully pulled changes into our repository.  There remains
    2.51 -one step before we can see these changes in the working directory.
    2.52 -
    2.53 -\subsection{Updating the working directory}
    2.54 +Como puede verse por las salidas antes-y-después de \hgcmd{tip}, hemos
    2.55 +jalado exitosamente los cambios en nuestro repositorio. Aún falta un
    2.56 +paso para que podamos ver estos cambios en nuestro directorio de
    2.57 +trabajo.
    2.58 +
    2.59 +\subsection{Actualizar el directorio de trabajo}
    2.60  
    2.61  We have so far glossed over the relationship between a repository and
    2.62  its working directory.  The \hgcmd{pull} command that we ran in