diff --git a/index.ja_JP.html b/index.ja_JP.html index 82db58d..a9eacd0 100644 --- a/index.ja_JP.html +++ b/index.ja_JP.html @@ -47,11 +47,12 @@

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

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

★ ★ ★

@@ -83,9 +85,11 @@

Basic tips

★ ★ ★

@@ -94,8 +98,8 @@

Setup

★ ★ ★

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

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.

install git-flow @@ -130,18 +134,18 @@

Getting started

-

Git flowを開始するには 既存のプロジェクトをカスタマイズします。

+

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

★ ★ ★

-

初期化

+

Initialize

-

通常の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.

@@ -158,18 +162,19 @@

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