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,25 @@
# git ls-remote
> 원격 저장소의 브랜치, 태그 등의 정보를 나열하는 Git 명령어입니다.
> 이름이나 URL이 주어지지 않으면 설정된 업스트림 브랜치를 사용하며, 업스트림이 설정되지 않은 경우 원격 origin을 사용합니다.
> 더 자세한 정보: <https://git-scm.com/docs/git-ls-remote>.
- 기본 원격 저장소의 모든 브랜치와 태그 정보 보기:
`git ls-remote`
- 기본 원격 저장소의 브랜치 정보만 보기:
`git ls-remote --heads`
- 기본 원격 저장소의 태그 정보만 보기:
`git ls-remote --tags`
- 이름이나 URL을 기반으로 특정 원격 저장소의 모든 브랜치와 태그 정보 보기:
`git ls-remote {{저장소_URL}}`
- 특정 검색어와 일치하는 정보만 보기:
`git ls-remote {{저장소_이름}} "{{브랜치_혹은_태그_이름}}"`