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 от 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 @@- 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
★ ★ ★
★ ★ ★
★ ★ ★
Вам потребуется 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.
Git flow нужно инициализировать, чтобы настроить его для работы с вашим проектом.
+Git flow needs to be initialized in order to customize your project setup.
★ ★ ★
Для начала использования 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.
★ ★ ★
Разработка новых фич начинается из ветки "develop".
-Для начала разработки фичи выполните:
+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