Git: branch e merge, comandi essenziali
Di seguito le operazioni basic da svolgere per lavorare correttamente con i branch in GIT git init inizializzo il repository git add * aggiungo tutti i file al repository git commit eseguo il commit Una volta che ho un repo in uno stato consistente posso usufruire dei branch: git checkout -b calcoloCategoria creo un branch che si chiama calcoloCategoria [LAVORO NEL MIO NUOVO BRANCH] git commit ...