mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-05 19:04:33 +01:00
31 lines
955 B
Text
31 lines
955 B
Text
title = Aggiornare i file nell'indice
|
|
cards = add commit
|
|
|
|
[description]
|
|
|
|
Quando cambiamo i files l'indice non cambia da solo. Dobbiamo usare `git add` per aggiornare l'indice alla nuova versione del file..
|
|
|
|
Proviamoci!
|
|
|
|
Le icone nel file manager ti mostrano quando il file attuale (bianco) e la versione nell'indice (blu) differiscono o sono uguali!
|
|
|
|
[win]
|
|
|
|
Bene! L'indice è anche chiamato "staging area" (area di staging) - E contiene esattamente ciò che finisce nel prossimo commit quando usi `git commit`!
|
|
|
|
[setup]
|
|
|
|
echo "La candela brucia con una fiamma blu." > candle
|
|
git add .
|
|
git commit -m "L'inizio"
|
|
|
|
[win]
|
|
|
|
# Fai una modifica alla candela
|
|
test "$(git diff --name-only)" = "candle" || file -f .git/candle-changed && touch .git/candle-changed
|
|
|
|
# Aggiungi la candella.
|
|
test "$(git diff --cached --name-only)" = "candle" || file -f .git/candle-added && touch .git/candle-added
|
|
|
|
# Fai un commit.
|
|
test "$(git diff --name-only HEAD HEAD^)" = "candle"
|