From 515b9f26991bd23a347b91af4b14bffb3bfa1a0c Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Sun, 13 Aug 2017 20:22:43 +0200 Subject: [PATCH] introduce first images --- git-crash-course.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/git-crash-course.md b/git-crash-course.md index 69525fa..fc3d888 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -146,6 +146,8 @@ Clonare un repository remoto esistente: --- + + ## Le basi: status Vedere lo stato del sistema: @@ -164,7 +166,7 @@ Vedere lo stato del sistema: * **Staged**: nella staging area, pronti per il prossimo commit -TODO: disegnino + --- @@ -265,7 +267,7 @@ Per vedere quanto รจ stato posto in staging area: ## Aggiustare i danni -Modificare l'ultimo commit (ad esempio per aggiungere un file, modificare il commit message o l'autore): +Modificare l'ultimo commit (aggiungere un file, modificare il commit message o l'autore, ...): $ git commit --amend [--author="Name Surname "] @@ -354,12 +356,12 @@ Partendo da master: $ git add nuovofile.txt $ git commit -TODO: immagine con lo stato corrente + $ git checkout master $ git merge fix/bug-123 -TODO: immagine con lo stato corrente + ---