1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 03:55:31 +02:00
tldr/pages.ko/common/git-ls-remote.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

25 lines
869 B
Markdown

# 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 {{저장소_이름}} "{{브랜치_혹은_태그_이름}}"`