2021-09-24 20:54:49 +02:00
|
|
|
title = Aggiornare i file nell'indice
|
2021-02-02 16:42:55 +01:00
|
|
|
cards = add commit
|
|
|
|
|
|
|
|
[description]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
Quando cambiamo i files l'indice non cambia da solo. Dobbiamo usare `git add` per aggiornare l'indice alla nuova versione del file..
|
2021-02-02 16:42:55 +01:00
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
Proviamoci!
|
2021-02-02 16:42:55 +01:00
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
Le icone nel file manager ti mostrano quando il file attuale (bianco) e la versione nell'indice (blu) differiscono o sono uguali!
|
2021-02-04 12:01:58 +01:00
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
Bene! L'indice è anche chiamato "staging area" (area di staging) - E contiene esattamente ciò che finisce nel prossimo commit quando usi `git commit`!
|
2021-02-04 12:01:58 +01:00
|
|
|
|
2021-02-02 16:42:55 +01:00
|
|
|
[setup]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
echo "La candela brucia con una fiamma blu." > candle
|
2021-02-02 16:42:55 +01:00
|
|
|
git add .
|
2021-09-14 17:03:17 +02:00
|
|
|
git commit -m "L'inizio"
|
2021-02-02 16:42:55 +01:00
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
# Fai una modifica alla candela
|
2021-02-02 16:42:55 +01:00
|
|
|
test "$(git diff --name-only)" = "candle" || file -f .git/candle-changed && touch .git/candle-changed
|
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
# Aggiungi la candella.
|
2021-02-02 16:42:55 +01:00
|
|
|
test "$(git diff --cached --name-only)" = "candle" || file -f .git/candle-added && touch .git/candle-added
|
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
# Fai un commit.
|
2021-02-02 16:42:55 +01:00
|
|
|
test "$(git diff --name-only HEAD HEAD^)" = "candle"
|