From 89f1a9dca2099c6a0ee04d4d4ce12321ca33ab24 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Herv=C3=A9=20MIRGUET?= efficient branching using git-flow by Vincent Driessen translations:
- English -
+ modèle de versionnement efficace utilisant git-flow par Vincent Driessen traductions:
+ English -
Castellano -
Brazilian Portugues -
繁體中文(Traditional Chinese) -
@@ -55,7 +55,7 @@
日本語 -
Türkçe -
한국어(Korean) -
- Français -
+ Français -
Italiano -
Nederlands -
Русский (Russian) -
@@ -68,38 +68,36 @@
- git-flow are a set of git extensions to provide high-level repository operations for Vincent
- Driessen's branching model.
- more
+ git-flow est un ensemble d'extensions git permettant des opérations de haut niveau sur un dépot pour appliquer le modèle de branches de Vincent Driessen.
+ détails
★ ★ ★ This cheatsheet shows the basic usage and effect of git-flow operations Cet aide-mémoire montre l'utilisation et les effets des opérations git-flow ★ ★ ★ ★ ★ ★ ★ ★ ★ You need wget and util-linux to install git-flow. Vous aurez besoin de wget et de util-linux pour installer git-flow.
- For detailed git flow intallation instructions please visit the git flow
- wiki.
+ Pour des instructions détaillées concernant l'installation de git-flow, consultez le
+ wiki git-flow.
Git flow needs to be initialized in order to customize your project setup. Git flow doit être initialisé afin de personnaliser la configuration de votre projet. ★ ★ ★ Start using git-flow by initializing it inside an existing git repository: Commencez à utiliser git-flow en l'initialisant dans un dépot git existant:
- You'll have to answer a few questions regarding the naming conventions for your branches. ★ ★ ★ Development of new features starting from the 'develop' branch. Start developing a new feature with Le développement d'une fonctionnalité commence à partir de la branche 'develop' Commencer le développement d'une nouvelle fonctionnalité avec: This action creates a new feature branch based on 'develop' and switches to it Cette commande crée une nouvelle branche de fonctionnalité basée sur 'develop' et passe sur cette branche Esse comando cria um novo branch da funcionalidade baseado no 'develop' e alterna para ele
- Finish the development of a feature.
- This action performs the following
+ Finaliza o desenvolvimento de uma funcionalidade.
+ Esse comando faz o seguinte
- Are you developing a feature in collaboration?
- Get a feature published by another user.
+ Obtenha uma funcionalidade publicada por outro usuário e acompanhe
+ as alterações remotas.
You can track a feature on origin by using ★ ★ ★ To start a release, use the git flow release command. It creates a release branch created from the 'develop' branch. Para começar uma versão, use o comando git flow release. Ele You can optionally supply a Você pode opcionalmente fornecer um hash sha-1 do commit ★ ★ ★ It's wise to publish the release branch after creating it to allow release commits by other developers. Do it similar to feature publishing with the command: É sensato publicar o branch da versão depois de criá-lo, para permitir commits por outros
+ desenvolvedores. É semelhante à publicação de uma funcionalidade com o comando: (You can track a remote release with the (Você pode acompanhar uma versão remota com o comando Finishing a release is one of the big steps in git branching. It performs several actions: A finalização de uma versão é um dos grandes passos na ramificação/branching do git. Ele executa várias ações: Don't forget to push your tags with ★ ★ ★ Like the other git flow commands, a hotfix is started with Assim como os outros comandos do git flow, um hotfix inicia com The version argument hereby marks the new hotfix release name. Optionally you can specify a basename to start from. O argumento release nesse caso marca a versão defeituosa na produção By finishing a hotfix it gets merged back into develop and master. Additionally the master merge is tagged with the hotfix version. Ao finalizar um hotfix ele é mesclado tanto no develop quanto no master. Além disso, o merge no master é etiquetado. ★ ★ ★ ★ ★ ★git-flow cheatsheet
- About
+ A propos
Basic tips
+ Conseils de base
-
Setup
+ Installation
-
Getting started
- Premiers pas
+ Initialize
+ Initialisation
-
git flow init
- It's recommended to use the default values.
+ Vous devrez répondre à quelques questions concernant les conventions de nommage pour vos branches.
+ Il est recommandé d'utiliser les valeurs par défaut.
Features
+ Fonctionnalités/Features
-
Start a new feature
- Commencer une feature
+
git flow feature start MYFEATURE
- Finish up a feature
+ Finalizar uma funcionalidade
-
@@ -217,11 +206,12 @@
Publish a feature
+ Publicar uma funcionalidade
- Publish a feature to the remote server so it can be used by other users.
+ Você está desenvolvendo uma funcionalidade colaborativamente?
+ Publique uma funcionalidade para o servidor remoto, assim ela pode ser
+ utilizada por outros usuários.
@@ -235,17 +225,16 @@
Getting a published feature
+ Obter uma funcionalidade publicada
- git flow feature pull origin MYFEATURE
+ git flow feature pull MYFEATURE
-
- git flow feature track MYFEATURE
Make a release
+ Criar uma versão/release
-
Start a release
+ Começar uma versão
-
+ cria um branch da versão baseado no branch 'develop'.
+
git flow release start RELEASE [BASE]
- [BASE]
commit sha-1 hash to start the release from. The commit must
- be on the
- 'develop' branch.[BASE]
de onde começar a versão. O
+ commit precisa estar no branch 'develop'
git flow release publish RELEASE
- git flow release track RELEASE
command)git flow release track RELEASE
)Finish up a release
+ Finalizar uma versão
-
-
git flow release finish RELEASE
- git push --tags
Hotfixes
+ Hotfixes
-
git flow hotfix start
-
- git flow hotfix start VERSION [BASENAME]
+ git flow hotfix start RELEASE
- Finish a hotfix
+ Finalizar um hotfix
-
- git flow hotfix finish VERSION
+ git flow hotfix finish RELEASE
Backlog
-
diff --git a/index.ru_RU.html b/index.ru_RU.html index a9eacd0..f9e5166 100644 --- a/index.ru_RU.html +++ b/index.ru_RU.html @@ -3,11 +3,20 @@
-
- +
+ + + + + + @@ -30,10 +39,10 @@
efficient branching using git-flow by Vincent Driessen
-translations: - English - +
эффективное ветвление с помощью git-flow от Vincent Driessen
+переводы: + English - Castellano - Brazilian Portugues - 繁體中文(Traditional Chinese) - @@ -57,8 +66,7 @@ 한국어(Korean) - Français - Italiano - - Nederlands - - Русский (Russian) - + Русский (Russian) - Deutsch (German) - Català (Catalan)
@@ -68,38 +76,37 @@- git-flow are a set of git extensions to provide high-level repository operations for Vincent - Driessen's branching model. - more + git-flow — это набор расширений git предоставляющий высокоуровневые операции над репозиторием для поддержки модели ветвления Vincent + Driessen. + узнать больше
★ ★ ★
-This cheatsheet shows the basic usage and effect of git-flow operations
+Эта шпаргалка показывает основные способы использования операций git-flow.
★ ★ ★
★ ★ ★
★ ★ ★
You need wget and util-linux to install git-flow.
+Вам потребуется wget и util-linux для установки git-flow.
- For detailed git flow intallation instructions please visit the git flow + Подробные инструкции по установке git flow смотрите на git flow wiki.
Git flow needs to be initialized in order to customize your project setup.
+Git flow нужно инициализировать, чтобы настроить его для работы с вашим проектом.
★ ★ ★
Start using git-flow by initializing it inside an existing git repository:
+Для начала использования git-flow проинициализируйте его внутри существующего git-репозитория:
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.
+ Вам придётся ответить на несколько вопросов о способах именования ваших веток.
+ Рекомендуется оставить значения по умолчанию.
★ ★ ★
Development of new features starting from the 'develop' branch.
-Start developing a new feature with
+Разработка новых фич начинается из ветки "develop".
+Для начала разработки фичи выполните:
git flow feature start MYFEATURE-
This action creates a new feature branch based on 'develop' and switches to it
+Это действие создаёт новую ветку фичи, основанную на ветке "develop", и переключается на неё.