From 703225bdb06539a9e6b236d74baaee35c9af4e65 Mon Sep 17 00:00:00 2001 From: tonypai Date: Wed, 31 Dec 2014 12:40:51 +0800 Subject: [PATCH] add zh_TW translation link --- index.de_DE.html | 192 ++++++++++++++++++++--------------------------- 1 file changed, 81 insertions(+), 111 deletions(-) diff --git a/index.de_DE.html b/index.de_DE.html index e461960..a9eacd0 100644 --- a/index.de_DE.html +++ b/index.de_DE.html @@ -30,10 +30,10 @@
-

git-flow Spickzettel

+

git-flow cheatsheet

- erstellt von Daniel Kummer + created by Daniel Kummer

-

Effizientes Branching mittels git-flow von Vincent Driessen

-

Übersetzungen: - English - - Castellano - +

efficient branching using git-flow by Vincent Driessen

+

translations: + English - + Castellano - Brazilian Portugues - + 繁體中文(Traditional Chinese) - 简体中文(Simplified Chinese) - 日本語 - Türkçe - @@ -58,7 +59,7 @@ Italiano - Nederlands - Русский (Russian) - - Deutsch (German) - + Deutsch (German) - Català (Catalan)

@@ -67,36 +68,38 @@
-

Über

+

About

- git-flow ist ein Set aus Git-Erweiterungen, welches komplexe Repository-Arbeiten - nach Vincent Driessen's Branching-Modell ermöglicht. - mehr + git-flow are a set of git extensions to provide high-level repository operations for Vincent + Driessen's branching model. + more

★ ★ ★

-

Dieser Spickzettel veranschaulicht die grundlegende Nutzung und den Ablauf von git-flow Operationen.

+

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

★ ★ ★

-

Grundlegende Tipps

+

Basic tips

★ ★ ★

-

Einrichtung

+

Setup

★ ★ ★

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

Du benötigst wget und util-linux um git-flow zu installieren.

+

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

- Für eine detaillierte git-flow Installationsanleitung, besuche bitte das git flow + For detailed git flow intallation instructions please visit the git flow wiki.

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

Erste Schritte

-

git-flow muss initalisiert werden, um das Projektsetup anzupassen.

+

Getting started

+

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

★ ★ ★

-

Initialisierung

+

Initialize

-

Fange an mit git-flow zu arbeiten, indem Du es innerhalb eines bestehenden Git-Repository initialisierst:

+

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

git flow init

- Dabei musst Du einige Fragen bezueglich der Namenskoventionen Deiner Branches (Entwicklungszweige) beantworten.
- Es wird empfohlen, die Standardwerte zu verwenden. + You'll have to answer a few questions regarding the naming conventions for your branches.
+ It's recommended to use the default values.

@@ -159,19 +162,19 @@

Features

    -
  • Entwicklung neuer Features für bevorstehende Releases.
  • -
  • In der Regel nur in Entwickler-Repositories zu finden.
  • +
  • Develop new features for upcoming releases
  • +
  • Typically exist in developers repos only

★ ★ ★

-

Entwicklung neuer Features

-

Neue Features werden vom 'develop'-Branch abgeleitet.

-

Starte die Entwicklung eines neuen Features mittels

+

Start a new feature

+

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

+

Start developing a new feature with

git flow feature start MYFEATURE
-

Dieser Befehl erstellt einen neuen Feature-Branch basierend auf 'develop' und wechselt in diesen.

+

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