tldr/pages.ko/common/git-ls-files.md

21 lines
504 B
Markdown
Raw Normal View History

# git ls-files
> 색인과 작업 트리의 파일 정보를 보여줍니다.
> 더 많은 정보: <https://git-scm.com/docs/git-ls-files>.
- 삭제된 파일 보기:
`git ls-files --deleted`
- 수정되거나 삭제된 파일 보기:
`git ls-files --modified`
- .gitignore에 명시된 파일과 Git이 관리하지 않는 파일 보기:
`git ls-files --others`
- Git이 관리하지 않는 파일 중 .gitignore에 명시되지 않은 파일 보기:
`git ls-files --others --exclude-standard`