diff --git a/index.it_IT.html b/index.it_IT.html index 635226c..a9eacd0 100644 --- a/index.it_IT.html +++ b/index.it_IT.html @@ -27,13 +27,13 @@ - +

git-flow cheatsheet

- creato da Daniel Kummer + created by Daniel Kummer

-

branching efficiente usando git-flow realizzato da Vincent Driessen

-

traduzioni: - 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 - + Italiano - Nederlands - Русский (Russian) - Deutsch (German) - @@ -67,27 +68,28 @@

-

Introduzione

+

About

- git-flow è un set di estensioni di git che offre dei comandi di alto livello sul repository per utilizzare il modello di branching di Vincent - Driessen. - maggiori informazioni + git-flow are a set of git extensions to provide high-level repository operations for Vincent + Driessen's branching model. + more

★ ★ ★

-

Questo cheatsheet mostra l'utilizzo di base a gli effetti dei comandi offerti da git-flow

+

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

★ ★ ★

-

Consigli di base

+

Basic tips

★ ★ ★

@@ -96,8 +98,8 @@

Setup

★ ★ ★

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

Sono necessari wget e util-linux per installare git-flow.

+

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

- Per le istruzioni dettagliate riguardo l'installazione di git-flow visitate il wiki di git flow. + For detailed git flow intallation instructions please visit the git flow + wiki.

install git-flow
-

Per Iniziare

-

Git flow ha la necessità di essere inizializzato per personalizzare il setup del progetto.

+

Getting started

+

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

★ ★ ★

-

Inizializzazione

+

Initialize

-

Iniziate ad utilizzare git-flow inizializzandolo all'interno di un repository git esistente:

+

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

git flow init

- Dovrete rispondere ad alcune domande riguardanti la naming conventions per i tuoi branch.
- Si raccomanda l'uso dei valori di default. + You'll have to answer a few questions regarding the naming conventions for your branches.
+ It's recommended to use the default values.

@@ -156,22 +159,22 @@
-

Features (Funzionalità)

+

Features

    -
  • Sviluppare nuove features per le releases in arrivo
  • -
  • Generalmente sono presenti solo nei repository di sviluppo
  • +
  • Develop new features for upcoming releases
  • +
  • Typically exist in developers repos only

★ ★ ★

-

Iniziare una nuova feature

-

Lo sviluppo di nuove feature cominica dal branch 'develop'.

-

Iniziate lo sviluppo di una nuova feature con

+

Start a new feature

+

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

+

Start developing a new feature with

git flow feature start MYFEATURE
-

Questa crea un nuovo feature branch basato su 'develop' e si sposta su quello

+

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