Compare commits
7 commits
b8b5e7df21
...
d9d83918e9
Author | SHA1 | Date | |
---|---|---|---|
d9d83918e9 | |||
da8dc16453 | |||
691dff63b8 | |||
|
6163dc855a | ||
|
b56057ca94 | ||
|
bae335007d | ||
|
0dd661ab77 |
1 changed files with 4 additions and 3 deletions
|
@ -368,7 +368,7 @@ Spostarsi su un branch:
|
||||||
|
|
||||||
$ git checkout fix/bug-123
|
$ git checkout fix/bug-123
|
||||||
|
|
||||||
Creare e spostarsi in un singolo comando:
|
Creare e spostarsi in un singolo comando (può essere usato solo se il branch non esiste ancora):
|
||||||
|
|
||||||
$ git checkout -b fix/bug-123
|
$ git checkout -b fix/bug-123
|
||||||
|
|
||||||
|
@ -394,7 +394,7 @@ Creare e spostarsi in un singolo comando:
|
||||||
|
|
||||||
## Rimettere insieme i pezzi: merge
|
## Rimettere insieme i pezzi: merge
|
||||||
|
|
||||||
$ git branch -b fix/bug-123
|
$ git checkout -b fix/bug-123
|
||||||
$ # editiamo nuovofile.txt
|
$ # editiamo nuovofile.txt
|
||||||
$ git add nuovofile.txt
|
$ git add nuovofile.txt
|
||||||
$ git commit
|
$ git commit
|
||||||
|
@ -420,7 +420,8 @@ Il comando commit ha le opzioni **--ff-only** e **--no-ff** per decidere come co
|
||||||
|
|
||||||
## Risoluzione dei conflitti
|
## Risoluzione dei conflitti
|
||||||
|
|
||||||
$ git branch -b fix/bug-123
|
$ git branch fix/bug-123
|
||||||
|
$ git checkout fix/bug-123
|
||||||
$ # editiamo file.txt
|
$ # editiamo file.txt
|
||||||
$ git add file.txt
|
$ git add file.txt
|
||||||
$ git commit
|
$ git commit
|
||||||
|
|
Loading…
Reference in a new issue