Ho eseguito "git status" e di seguito sono elencati alcuni file che sono stati modificati / o sotto l'intestazione "modifiche non messe in scena per il commit". Ha anche elencato alcuni file non tracciati che voglio ignorare (ho un file ".gitignore" in queste directory).
Voglio mettere in scena i file modificati in modo da poterli commettere. Quando ho eseguito "git add.", Ha aggiunto i file modificati E i file che voglio ignorare nella gestione temporanea.
Come posso aggiungere solo i file modificati e ignorare i file non tracciati se presentati con lo stato git di seguito.
Inoltre, i miei file ".gitignore" funzionano correttamente?
$ git status
# On branch addLocation
# 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: someProject/path/domain/viewer/LocationDO.java
# modified: someProject/path/service/ld/LdService.java
# modified: someProject/path/service/ld/LdServiceImpl.java
# modified: someProject/path/web/jsf/viewer/LocationFormAction.java
# modified: someProject/war/WEB-INF/classes/message/viewer/viewer.properties
# modified: someProject/war/page/viewer/searchForm.xhtml
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .metadata/
# someProject/build/
no changes added to commit (use "git add" and/or "git commit -a")