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-tree
> 트리 객체의 파일과 디렉토리 목록을 보여줍니다.
> 더 자세한 정보: <https://git-scm.com/docs/git-ls-tree>.
- 특정 브랜치의 파일과 디렉토리 목록 보기:
`git ls-tree {{브랜치_이름}}`
- 특정 커밋의 파일과 디렉토리 목록을 하위 디렉토리까지 재귀적으로 보기:
`git ls-tree -r {{커밋_해시}}`
- 특정 커밋의 파일 이름만 보기:
`git ls-tree --name-only {{커밋_해시}}`
- 현재 브랜치의 최신 상태 파일과 디렉토리 목록을 트리 구조로 출력하기 (참고: `tree --fromfile`은 Windows에서 지원되지 않음):
`git ls-tree -r --name-only HEAD | tree --fromfile`