Dopo aver visto quanto segue dalla riga di comando:
# On branch RB_3.0.10
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: index.htm
Sto cercando di eliminare le mie modifiche digitando il comando:
git checkout -- index.htm
ma quando rieseguo git status, sembra esattamente lo stesso. Il checkout sembra non funzionare. Sto facendo qualcosa di sbagliato? Sto usando GIT 1.6.1.2 su Windows / Cygwin.
# On branch RB_3.0.10
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: index.htm
git checkout HEAD -- index.htm
ha funzionato per me!
git checkout HEAD -- index.htm
( Il check-out dall'ultimo stato di cui è stato eseguito il commit, invece di il check-out dall'indice) funziona?