diff --git a/index.ru_RU.html b/index.ru_RU.html index 3ddab0b..a9eacd0 100644 --- a/index.ru_RU.html +++ b/index.ru_RU.html @@ -3,20 +3,11 @@ - Шпаргалка по git-flow - - - - + git-flow cheatsheet + - - @@ -39,10 +30,10 @@
-

Шпаргалка по git-flow

+

git-flow cheatsheet

- создал Daniel Kummer + created by Daniel Kummer

-

эффективное ветвление с помощью git-flow от Vincent Driessen

-

переводы: - English - +

efficient branching using git-flow by Vincent Driessen

+

translations: + English - Castellano - Brazilian Portugues - + 繁體中文(Traditional Chinese) - 简体中文(Simplified Chinese) - 日本語 - Türkçe - 한국어(Korean) - Français - Italiano - - Русский (Russian) - + Nederlands - + Русский (Russian) - Deutsch (German) - Català (Catalan)

@@ -75,37 +68,38 @@
-

Введение

+

About

- git-flow — это набор расширений git предоставляющий высокоуровневые операции над репозиторием для поддержки модели ветвления Vincent - Driessen. - узнать больше + git-flow are a set of git extensions to provide high-level repository operations for Vincent + Driessen's branching model. + more

★ ★ ★

-

Эта шпаргалка показывает основные способы использования операций git-flow.

+

This cheatsheet shows the basic usage and effect of git-flow operations

★ ★ ★

-

Общие замечания

+

Basic tips

★ ★ ★

-

Установка

+

Setup

★ ★ ★

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

Вам потребуется wget и util-linux для установки git-flow.

+

You need wget and util-linux to install git-flow.

- Подробные инструкции по установке git flow смотрите на git flow + For detailed git flow intallation instructions please visit the git flow wiki.

install git-flow @@ -139,19 +133,19 @@
-

Приступая к работе

-

Git flow нужно инициализировать, чтобы настроить его для работы с вашим проектом.

+

Getting started

+

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

★ ★ ★

-

Инициализация

+

Initialize

-

Для начала использования git-flow проинициализируйте его внутри существующего git-репозитория:

+

Start using git-flow by initializing it inside an existing git repository:

git flow init

- Вам придётся ответить на несколько вопросов о способах именования ваших веток.
- Рекомендуется оставить значения по умолчанию. + You'll have to answer a few questions regarding the naming conventions for your branches.
+ It's recommended to use the default values.

@@ -165,22 +159,22 @@
-

Фичи

+

Features

    -
  • Разработка новых фич для последующих релизов
  • -
  • Обычно присутствует только в репозиториях разработчиков
  • +
  • Develop new features for upcoming releases
  • +
  • Typically exist in developers repos only

★ ★ ★

-

Начало новой фичи

-

Разработка новых фич начинается из ветки "develop".

-

Для начала разработки фичи выполните:

+

Start a new feature

+

Development of new features starting from the 'develop' branch.

+

Start developing a new feature with

git flow feature start MYFEATURE
-

Это действие создаёт новую ветку фичи, основанную на ветке "develop", и переключается на неё.

+

This action creates a new feature branch based on 'develop' and switches to it