Compare commits

..

No commits in common. "d9d83918e9fca087901ad276abaa8a00f7f47448" and "b8b5e7df218ff5a0149596b7ceabf4b0375bef07" have entirely different histories.

View file

@ -368,7 +368,7 @@ Spostarsi su un branch:
$ git checkout fix/bug-123
Creare e spostarsi in un singolo comando (può essere usato solo se il branch non esiste ancora):
Creare e spostarsi in un singolo comando:
$ git checkout -b fix/bug-123
@ -394,7 +394,7 @@ Creare e spostarsi in un singolo comando (può essere usato solo se il branch no
## Rimettere insieme i pezzi: merge
$ git checkout -b fix/bug-123
$ git branch -b fix/bug-123
$ # editiamo nuovofile.txt
$ git add nuovofile.txt
$ git commit
@ -420,8 +420,7 @@ Il comando commit ha le opzioni **--ff-only** e **--no-ff** per decidere come co
## Risoluzione dei conflitti
$ git branch fix/bug-123
$ git checkout fix/bug-123
$ git branch -b fix/bug-123
$ # editiamo file.txt
$ git add file.txt
$ git commit