"Git status" komutunu çalıştırdım ve aşağıda listelenen bazı dosyalar şunlardır: "taahhüt için sahnelenmeyen değişiklikler" başlığı altında. Ayrıca yoksaymak istediğiniz bazı izlenmemiş dosyaları listeledi (Bu dizinlerde bir ".gitignore" dosyası var).
Değiştirilmiş dosyaları hazırlamaya koymak istiyorum, böylece bunları yerine getirebiliyorum. "Git add." Komutunu çalıştırdığımda değiştirilmiş dosyaları VE yoksaymak istediğim dosyaları hazırlamaya ekledi.
Aşağıdaki git durumu ile sunulursa, yalnızca değiştirilmiş dosyaları nasıl ekler ve izlenmeyen dosyaları nasıl yok sayarım.
Ayrıca, ".gitignore" dosyalarım düzgün çalışıyor mu?
$ 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")