diff --git a/index.es_ES.html b/index.es_ES.html index 58a398d..a9eacd0 100644 --- a/index.es_ES.html +++ b/index.es_ES.html @@ -33,7 +33,7 @@
ramificaciones eficientes usando git-flow, por Vincent Driessen
-traducciones: - English - - Castellano - +
efficient branching using git-flow by Vincent Driessen
+translations: + English - + Castellano - Brazilian Portugues - + 繁體中文(Traditional Chinese) - 简体中文(Simplified Chinese) - 日本語 - + Türkçe - 한국어(Korean) - Français - Italiano - @@ -66,38 +68,38 @@
- git-flow es un conjunto de extensiones para git que proveen comandos de alto nivel para operar repositorios - basados en el modelo de ramificaciones de Vincent - Driessen. - más + git-flow are a set of git extensions to provide high-level repository operations for Vincent + Driessen's branching model. + more
★ ★ ★
-Esta hoja de referencia explica las operaciones básicas de git-flow, los comandos y sus efectos.
+This cheatsheet shows the basic usage and effect of git-flow operations
★ ★ ★
★ ★ ★
★ ★ ★
Necesitarás wget y util-linux para instalar git-flow.
+You need wget and util-linux to install git-flow.
- Para instrucciones de instalación detalladas, por favor, visite la wiki de git flow + For detailed git flow intallation instructions please visit the git flow + wiki.
Git flow necesita ser inicializado para poder alterar la configuración del proyecto.
+Git flow needs to be initialized in order to customize your project setup.
★ ★ ★
Comience a usar git-flow inicializándolo desde dentro de un repositorio git existente:
+Start using git-flow by initializing it inside an existing git repository:
git flow init
- Deberá contestar algunas preguntas relacionadas con las convenciones de nombres para las ramas.
- Se recomienda utilizar los valores predeterminados.
+ You'll have to answer a few questions regarding the naming conventions for your branches.
+ It's recommended to use the default values.
★ ★ ★
El desarrollo de nuevas características parte de la rama 'develop'.
-Comienze una nueva característica usando
+Development of new features starting from the 'develop' branch.
+Start developing a new feature with
git flow feature start MYFEATURE-
Esta acción crea una nueva rama derivada de 'develop' y luego cambia el código a esta rama.
+This action creates a new feature branch based on 'develop' and switches to it