"git status"를 실행했으며 아래에 나열된 일부 파일은 "커밋을 위해 준비되지 않은 변경 사항"이라는 제목 아래에 수정되었습니다. 또한 무시하려는 추적되지 않은 파일도 나열했습니다 (이 디렉토리에 ".gitignore"파일이 있음).
수정 된 파일을 준비 상태로두고 커밋 할 수 있습니다. "git add."를 실행하면 수정 된 파일과 스테이징에 무시하려는 파일이 추가되었습니다.
아래 git 상태가 표시되면 수정 된 파일 만 추가하고 추적되지 않은 파일을 무시하는 방법은 무엇입니까?
또한 ".gitignore"파일이 제대로 작동합니까?
$ 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")