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 @@
- +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 @@
- 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
★ ★ ★
★ ★ ★
★ ★ ★
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.
Git flow ha la necessità di essere inizializzato per personalizzare il setup del progetto.
+Git flow needs to be initialized in order to customize your project setup.
★ ★ ★
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.
★ ★ ★
Lo sviluppo di nuove feature cominica dal branch 'develop'.
-Iniziate lo sviluppo di una nuova feature con
+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