J'ai exécuté "git status" et énuméré ci-dessous sont quelques fichiers qui ont été modifiés / ou sous le titre "changements non organisés pour la validation". Il a également répertorié certains fichiers non suivis que je veux ignorer (j'ai un fichier ".gitignore" dans ces répertoires).
Je souhaite mettre les fichiers modifiés en attente afin de pouvoir les valider. Lorsque j'ai exécuté "git add.", Il a ajouté les fichiers modifiés ET les fichiers que je veux ignorer à la mise en scène.
Comment ajouter uniquement les fichiers modifiés et ignorer les fichiers non suivis s'ils présentent l'état git ci-dessous.
De plus, mes fichiers ".gitignore" fonctionnent-ils correctement?
$ 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")