Mercurial > hgbook
comparison es/tour-basic.tex @ 463:932c10e8c225
now, this has section 1.5 finished. Last commit had 1.4. Typo in commit message
author | Javier Rojas <jerojasro@devnull.li> |
---|---|
date | Sat, 25 Oct 2008 15:41:52 -0500 |
parents | e8a5068c7605 |
children | 5c676825e7a1 |
comparison
equal
deleted
inserted
replaced
462:e8a5068c7605 | 463:932c10e8c225 |
---|---|
310 el contenido de un cambio como un \emph{diff unificado} (si usted | 310 el contenido de un cambio como un \emph{diff unificado} (si usted |
311 nunca ha visto un diff unificado antes, vea la | 311 nunca ha visto un diff unificado antes, vea la |
312 sección~\ref{sec:mq:patch} para un vistazo global). | 312 sección~\ref{sec:mq:patch} para un vistazo global). |
313 \interaction{tour.log-vp} | 313 \interaction{tour.log-vp} |
314 | 314 |
315 \section{All about command options} | 315 \section{Todo acerca de las opciones para comandos} |
316 | 316 |
317 Let's take a brief break from exploring Mercurial commands to discuss | 317 Tomemos un breve descanso de la tarea de explorar los comandos de |
318 a pattern in the way that they work; you may find this useful to keep | 318 Mercurial para hablar de un patrón en la manera en qué trabajan; será |
319 in mind as we continue our tour. | 319 útil tener esto en mente a medida que avanza nuestra gira. |
320 | 320 |
321 Mercurial has a consistent and straightforward approach to dealing | 321 Mercurial tiene un enfoque consistente y directo en el manejo de las |
322 with the options that you can pass to commands. It follows the | 322 opciones que usted le puede pasar a los comandos. Se siguen las |
323 conventions for options that are common to modern Linux and Unix | 323 convenciones para opciones que son comunes en sistemas Linux y Unix |
324 systems. | 324 modernos. |
325 \begin{itemize} | 325 \begin{itemize} |
326 \item Every option has a long name. For example, as we've already | 326 \item Cada opción tiene un nombre largo. Por ejemplo, el comando |
327 seen, the \hgcmd{log} command accepts a \hgopt{log}{--rev} option. | 327 \hgcmd{log} acepta la opción \hgopt{log}{--rev}, como ya hemos |
328 \item Most options have short names, too. Instead of | 328 visto. |
329 \hgopt{log}{--rev}, we can use \hgopt{log}{-r}. (The reason that | 329 \item Muchas opciones tienen también un nombre corto. En vez de |
330 some options don't have short names is that the options in question | 330 \hgopt{log}{--rev}, podemos usar \hgopt{log}{-r}. (El motivo para |
331 are rarely used.) | 331 que algunas opciones no tengan nombres cortos es que dichas |
332 \item Long options start with two dashes (e.g.~\hgopt{log}{--rev}), | 332 opciones se usan rara vez.) |
333 while short options start with one (e.g.~\hgopt{log}{-r}). | 333 \item Las opciones largas empiezan con dos guiones (p.ej.~\hgopt{log}{--rev}), |
334 \item Option naming and usage is consistent across commands. For | 334 mientras que las opciones cortas empiezan con uno (e.g.~\hgopt{log}{-r}). |
335 example, every command that lets you specify a changeset~ID or | 335 \item El nombre y uso de las opciones es consistente en todos los |
336 revision number accepts both \hgopt{log}{-r} and \hgopt{log}{--rev} | 336 comandos. Por ejemplo, cada comando que le permite pasar un ID de |
337 arguments. | 337 conjunto de cambios o un número de revisión acepta tanto la opción |
338 \hgopt{log}{-r} como la \hgopt{log}{--rev}. | |
338 \end{itemize} | 339 \end{itemize} |
339 In the examples throughout this book, I use short options instead of | 340 En los ejemplos en este libro, uso las opciones cortas en vez de las |
340 long. This just reflects my own preference, so don't read anything | 341 largas. Esto sólo muestra mis preferencias, así que no le dé |
341 significant into it. | 342 significado especial a eso. |
342 | 343 |
343 Most commands that print output of some kind will print more output | 344 Muchos de los comandos que generan salida de algún tipo mostrarán más |
344 when passed a \hggopt{-v} (or \hggopt{--verbose}) option, and less | 345 salida cuando se les pase la opción \hggopt{-v} (o |
345 when passed \hggopt{-q} (or \hggopt{--quiet}). | 346 \hggopt{--verbose}\ndt{Prolijo.}), y menos cuando se les pase la opción \hggopt{-q} |
347 (o \hggopt{--quiet}\ndt{Silencioso.}). | |
346 | 348 |
347 \section{Making and reviewing changes} | 349 \section{Making and reviewing changes} |
348 | 350 |
349 Now that we have a grasp of viewing history in Mercurial, let's take a | 351 Now that we have a grasp of viewing history in Mercurial, let's take a |
350 look at making some changes and examining them. | 352 look at making some changes and examining them. |