From 95096b20d143a328e4df7287c67e0a7aa400c624 Mon Sep 17 00:00:00 2001
From: tonypai
efficient branching using git-flow by Vincent Driessen
translations: - English - + English - Castellano - Brazilian Portugues - + 繁體中文(Traditional Chinese) - 简体中文(Simplified Chinese) - - 日本語 - + 日本語 - Türkçe - 한국어(Korean) - Français - @@ -70,12 +71,13 @@
- 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
★ ★ ★
@@ -83,9 +85,11 @@★ ★ ★
★ ★ ★
git-flowのインストールには、wgetとutil-linuxが必要です。
+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リポジトリ配下に移動した後、下記のコマンドでgit-flow化します。
+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