Eu fiz git commit -m "message"
assim:
> git commit -m "save arezzo files"
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: arezzo.txt
# modified: arezzo.jsp
#
no changes added to commit (use "git add" and/or "git commit -a")
Mas depois, quando eu mostro git status
, os mesmos arquivos modificados:
> git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: arezzo.txt
# modified: arezzo.jsp
#
no changes added to commit (use "git add" and/or "git commit -a")
O que estou fazendo de errado?
git commit -am "save arezzo files"
para adicionar automaticamente todas as alterações (wrt .gitignore). Você pode querer adicionar apenas arquivos / diretórios específicos:git add file.src