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 @@

git-flow cheatsheet

- creado por Daniel Kummer + created by Daniel Kummer Tweet

-

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 @@

-

Acerca de git-flow

+

About

- 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

★ ★ ★

-

Consejos básicos

+

Basic tips

★ ★ ★

-

Configuración

+

Setup

★ ★ ★

@@ -119,30 +121,31 @@ $ wget -q -O - --no-check-certificate https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash -

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.

install git-flow
-

Introducción

-

Git flow necesita ser inicializado para poder alterar la configuración del proyecto.

+

Getting started

+

Git flow needs to be initialized in order to customize your project setup.

★ ★ ★

-

Inicialización

+

Initialize

-

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.

@@ -156,22 +159,22 @@
-

Características

+

Features

★ ★ ★

-

Comenzar una nueva característica

-

El desarrollo de nuevas características parte de la rama 'develop'.

-

Comienze una nueva característica usando

+

Start a new feature

+

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