diff --git a/index.nl_NL.html b/index.nl_NL.html index 0f27b7d..a9eacd0 100644 --- a/index.nl_NL.html +++ b/index.nl_NL.html @@ -33,7 +33,7 @@

git-flow cheatsheet

- gemaakt door Daniel Kummer + created by Daniel Kummer Tweet

-

efficient branchen met behulp van git-flow door Vincent Driessen

-

vertalingen: - 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 - - Nederlands - + Nederlands - + Русский (Russian) - Deutsch (German) - Català (Catalan)

@@ -66,38 +68,38 @@
-

Over

+

About

- git-flow is een set van git extensies voor high-level repository operaties voor Vincent + git-flow are a set of git extensions to provide high-level repository operations for Vincent Driessen's branching model. - meer + more

★ ★ ★

-

Dit cheatsheet laat het basisgebruik en de effecten zien van git-flow operaties

+

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

★ ★ ★

-

Basistips

+

Basic tips

★ ★ ★

-

Installatie

+

Setup

★ ★ ★

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

Je hebt wget en util-linux nodig om git-flow te installeren.

+

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

- Gedetailleerde installatie instructies voor git flow kun je vinden op degit flow + For detailed git flow intallation instructions please visit the git flow wiki.

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

Aan de slag

-

Git flow moet geinitializeerd zijn om je project setup aan te passen.

+

Getting started

+

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

★ ★ ★

-

Initializatie

+

Initialize

-

Je kan git-flow initializeren door het volgende commando in een bestaande git repository uit te voeren:

+

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

git flow init

- Je dient een paar vragen te beantwoorden over de naamgevingsconventies voor je branches.
- Het is aanbevolen om de standaard waarden te gebruiken. + You'll have to answer a few questions regarding the naming conventions for your branches.
+ It's recommended to use the default values.

@@ -160,19 +162,19 @@

Features

★ ★ ★

-

Een nieuwe feature starten

-

Nieuwe features hebben de 'develop' branch als uitgangspunt.

-

Start met ontwikkelen van een nieuwe feature met

+

Start a new feature

+

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

+

Start developing a new feature with

git flow feature start MYFEATURE
-

Deze actie maakt een nieuwe feature branch gebaseerd op 'develop' en schakelt over naar deze

+

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