hgbook

diff es/tour-merge.tex @ 385:0abd3d78172e

finished translation of a figure

translated a few paragraphs of tour-merge
author Javier Rojas <jerojasro@devnull.li>
date Sun Nov 02 13:54:42 2008 -0500 (2008-11-02)
parents 7f1572c365d2
children c3a867bba34a
line diff
     1.1 --- a/es/tour-merge.tex	Fri Oct 31 00:19:04 2008 -0500
     1.2 +++ b/es/tour-merge.tex	Sun Nov 02 13:54:42 2008 -0500
     1.3 @@ -77,31 +77,33 @@
     1.4  repositorio usando el comando \hgcmd{heads}\ndt{Frentes.}.
     1.5  \interaction{tour.merge.heads}
     1.6  
     1.7 -\subsection{Performing the merge}
     1.8 -
     1.9 -What happens if we try to use the normal \hgcmd{update} command to
    1.10 -update to the new tip?
    1.11 +\subsection{Hacer la fusión}
    1.12 +
    1.13 +% TODO poner interrogante de apertura
    1.14 +Qué pasa si tratamos de usar el comando usual, \hgcmd{update}, para
    1.15 +actualizar el nuevo frente?
    1.16  \interaction{tour.merge.update}
    1.17 -Mercurial is telling us that the \hgcmd{update} command won't do a
    1.18 -merge; it won't update the working directory when it thinks we might
    1.19 -be wanting to do a merge, unless we force it to do so.  Instead, we
    1.20 -use the \hgcmd{merge} command to merge the two heads.
    1.21 +Mercurial nos indica que el comando \hgcmd{update} no hará la fusión;
    1.22 +no actualizará el directorio de trabajo cuando considera que lo que
    1.23 +deseamos hacer es una fusión, a menos que lo obliguemos a hacerlo.
    1.24 +En vez de \hgcmd{update}, usamos el comando \hgcmd{merge} para hacer
    1.25 +la fusión entre los dos frentes.
    1.26  \interaction{tour.merge.merge}
    1.27  
    1.28  \begin{figure}[ht]
    1.29    \centering
    1.30    \grafix{tour-merge-merge}
    1.31 -  \caption{Working directory and repository during merge, and
    1.32 -    following commit}
    1.33 +  \caption{Directorio de trabajo y repositorio durante la fusión, y
    1.34 +  consignación consecuente}
    1.35    \label{fig:tour-merge:merge}
    1.36  \end{figure}
    1.37  
    1.38 -This updates the working directory so that it contains changes from
    1.39 -\emph{both} heads, which is reflected in both the output of
    1.40 -\hgcmd{parents} and the contents of \filename{hello.c}.
    1.41 +Esto actualiza el directorio de trabajo, de tal forma que contenga los
    1.42 +cambios de \emph{ambos} frentes, lo que se ve reflejado tanto en la
    1.43 +salida de \hgcmd{parents} como en los contenidos de \filename{hello.c}.
    1.44  \interaction{tour.merge.parents}
    1.45  
    1.46 -\subsection{Committing the results of the merge}
    1.47 +\subsection{Consignar los resultados de la fusión}
    1.48  
    1.49  Whenever we've done a merge, \hgcmd{parents} will display two parents
    1.50  until we \hgcmd{commit} the results of the merge.