8
Git unisce master nel ramo delle caratteristiche
Diciamo che abbiamo la seguente situazione in Git: Un repository creato: mkdir GitTest2 cd GitTest2 git init Alcune modifiche nel master avvengono e si impegnano: echo "On Master" > file git commit -a -m "Initial commit" Feature1 branched master e alcuni lavori sono stati eseguiti: git branch feature1 git checkout …