hgbook
diff es/tour-merge.tex @ 384:7f1572c365d2
translated up to section 2.1.1, included
author | Javier Rojas <jerojasro@devnull.li> |
---|---|
date | Fri Oct 31 00:19:04 2008 -0500 (2008-10-31) |
parents | 772b30049b80 |
children | 0abd3d78172e |
line diff
1.1 --- a/es/tour-merge.tex Thu Oct 30 00:28:59 2008 -0500 1.2 +++ b/es/tour-merge.tex Fri Oct 31 00:19:04 2008 -0500 1.3 @@ -45,33 +45,36 @@ 1.4 Ya sabemos que jalar los cambios desde nuestro repositorio 1.5 \dirname{my-hello} no tendrá efecto en el directorio de trabajo. 1.6 \interaction{tour.merge.pull} 1.7 -However, the \hgcmd{pull} command says something about ``heads''. 1.8 - 1.9 -\subsection{Head changesets} 1.10 - 1.11 -A head is a change that has no descendants, or children, as they're 1.12 -also known. The tip revision is thus a head, because the newest 1.13 -revision in a repository doesn't have any children, but a repository 1.14 -can contain more than one head. 1.15 +Sin embargo, el comando \hgcmd{pull} dice algo acerca de 1.16 +``frentes''\ndt{El autor se refiere a \emph{heads} aquí.}. 1.17 + 1.18 +\subsection{Conjuntos de cambios de frentes} 1.19 + 1.20 +Un frente es un cambio que no tiene descendientes, o hijos, como 1.21 +también se les conoce. La revisión de punta es, por tanto, un frente, 1.22 +porque la revisión más reciente en un repositorio no tiene ningún 1.23 +% TODO cambio en la redacción de la frase, pero espero que conserve el 1.24 +% sentido. Querido human@, apruebe o corrija :D 1.25 +hijo. Sin embargo, un repositorio puede contener más de un frente. 1.26 1.27 \begin{figure}[ht] 1.28 \centering 1.29 \grafix{tour-merge-pull} 1.30 - \caption{Repository contents after pulling from \dirname{my-hello} into 1.31 - \dirname{my-new-hello}} 1.32 + \caption{Contenidos del repositorio después de jalar 1.33 + \dirname{my-hello} a \dirname{my-new-hello}} 1.34 \label{fig:tour-merge:pull} 1.35 \end{figure} 1.36 1.37 -In figure~\ref{fig:tour-merge:pull}, you can see the effect of the 1.38 -pull from \dirname{my-hello} into \dirname{my-new-hello}. The history 1.39 -that was already present in \dirname{my-new-hello} is untouched, but a 1.40 -new revision has been added. By referring to 1.41 -figure~\ref{fig:tour-merge:sep-repos}, we can see that the 1.42 -\emph{changeset ID} remains the same in the new repository, but the 1.43 -\emph{revision number} has changed. (This, incidentally, is a fine 1.44 -example of why it's not safe to use revision numbers when discussing 1.45 -changesets.) We can view the heads in a repository using the 1.46 -\hgcmd{heads} command. 1.47 +En la figura~\ref{fig:tour-merge:pull} usted puede ver el efecto que 1.48 +tiene jalar los cambios de \dirname{my-hello} a \dirname{my-new-hello}. 1.49 +El historial que ya existía en \dirname{my-new-hello} se mantiene 1.50 +intacto, pero fue añadida una nueva revisión. Refiriéndonos a la 1.51 +figura~\ref{fig:tour-merge:sep-repos}, podemos ver que el \emph{ID del 1.52 +conjunto de cambios} se mantiene igual en el nuevo repositorio, pero 1.53 +el \emph{número de revisión} ha cambiado. (Incidentalmente, éste es un 1.54 +buen ejemplo de porqué no es seguro usar números de revisión cuando se 1.55 +habla de conjuntos de cambios). Podemos ver los frentes en un 1.56 +repositorio usando el comando \hgcmd{heads}\ndt{Frentes.}. 1.57 \interaction{tour.merge.heads} 1.58 1.59 \subsection{Performing the merge}