git-ls-{files,remote,tree}: add Korean translation (#13402)

git-ls-(files|remote|tree): add Korean translation
This commit is contained in:
Chooooooo
2024-08-12 08:37:00 +09:00
committed by GitHub
parent 91a1c5f207
commit 54f007b391
3 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# 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`