1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/git-ls-files.md
Chooooooo 54f007b391
git-ls-{files,remote,tree}: add Korean translation (#13402)
git-ls-(files|remote|tree): add Korean translation
2024-08-12 08:37:00 +09:00

20 lines
507 B
Markdown

# 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`