From 0dd661ab77779ac8af1e183f9edba6343ad94b4c Mon Sep 17 00:00:00 2001 From: dcast78 Date: Mon, 18 Sep 2017 13:01:37 +0200 Subject: [PATCH 1/4] Fix command git branch -b fix/bug-123 Correction of command with git checkout -b fix/bug-123 ( -b create and checkout a new branch) --- git-crash-course.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-crash-course.md b/git-crash-course.md index efe77c1..94d56d3 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -369,7 +369,7 @@ Creare e spostarsi in un singolo comando: ## Rimettere insieme i pezzi: merge - $ git branch -b fix/bug-123 + $ git checkout -b fix/bug-123 $ # editiamo nuovofile.txt $ git add nuovofile.txt $ git commit From bae335007dcec0ee1706704db0f50b30b8416839 Mon Sep 17 00:00:00 2001 From: dcast78 Date: Mon, 18 Sep 2017 13:09:09 +0200 Subject: [PATCH 2/4] Command correction Replace git branch -b fix/bug-123 with git checkout [-b] fix/bug-123. Add comment about -b parameter, if branch already exist, the command do not create (correct) and do not checkout a new branch without info. --- git-crash-course.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-crash-course.md b/git-crash-course.md index 94d56d3..2e2eb8b 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -395,7 +395,7 @@ Il comando commit ha le opzioni **--ff-only** e **--no-ff** per decidere come co ## Risoluzione dei conflitti - $ git branch -b fix/bug-123 + $ git checkout [-b] fix/bug-123 #Il parametro -b va usato se il branch fix/bug-123 non e' gia stato creato (slide precedente) $ # editiamo file.txt $ git add file.txt $ git commit From b56057ca942b2c13b28205fae1b8fdc3b6dec79a Mon Sep 17 00:00:00 2001 From: dcast78 Date: Mon, 18 Sep 2017 13:19:44 +0200 Subject: [PATCH 3/4] Comment clarification More info about git checkout [-b] fix/bug-123 command --- git-crash-course.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-crash-course.md b/git-crash-course.md index 2e2eb8b..b35331f 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -395,7 +395,7 @@ Il comando commit ha le opzioni **--ff-only** e **--no-ff** per decidere come co ## Risoluzione dei conflitti - $ git checkout [-b] fix/bug-123 #Il parametro -b va usato se il branch fix/bug-123 non e' gia stato creato (slide precedente) + $ git checkout [-b] fix/bug-123 #Il parametro -b va usato se il branch fix/bug-123 viene creato ora. Se gia' presente (se: creato nella slide precedente) non viene fatto il checkout. $ # editiamo file.txt $ git add file.txt $ git commit From 6163dc855ac17fe24240d86b12d41ecd31fcb522 Mon Sep 17 00:00:00 2001 From: dcast78 Date: Mon, 18 Sep 2017 13:24:57 +0200 Subject: [PATCH 4/4] Typo correction Typo correction --- git-crash-course.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-crash-course.md b/git-crash-course.md index b35331f..76be9a4 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -395,7 +395,7 @@ Il comando commit ha le opzioni **--ff-only** e **--no-ff** per decidere come co ## Risoluzione dei conflitti - $ git checkout [-b] fix/bug-123 #Il parametro -b va usato se il branch fix/bug-123 viene creato ora. Se gia' presente (se: creato nella slide precedente) non viene fatto il checkout. + $ git checkout [-b] fix/bug-123 #Il parametro -b va usato se il branch fix/bug-123 viene creato ora. Se gia' presente (es: creato nella slide precedente) non viene fatto il checkout. $ # editiamo file.txt $ git add file.txt $ git commit