git, git-abort, git-add, git-alias, git-cherry-pick, git-clone: add Korean translation (#8035)

This commit is contained in:
Choi Young-jin
2022-04-20 16:40:24 +09:00
committed by GitHub
parent 87781641f6
commit 263bc24e11
6 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# git clone
> 이미 존재하는 레파지토리를 복제.
> 더 많은 정보: <https://git-scm.com/docs/git-clone>.
- 이미 존재하는 레파지토리를 복제:
`git clone {{원격_레파지토리_경로}}`
- 이미 존재하는 레파지토리를 특정 디렉토리에 복제:
`git clone {{원격_레파지토리_경로}} {{디렉토리/의/경로}}`
- 이미 존재하는 레파지토리와 그 서브모듈을 복제:
`git clone --recursive {{원격_레파지토리_경로}}`
- 로컬 레파지토리를 복제:
`git clone -l {{로컬/레파지토리/의/경로}}`
- 출력 없이 복제:
`git clone -q {{원격_레파지토리_경로}}`
- 이미 존재하는 레파지토리의 최근 커밋 10개만 복제 (시간 절약에 좋음):
`git clone --depth {{10}} {{원격_레파지토리_경로}}`
- 이미 존재하는 레파지토의 특정 브랜치만 복제:
`git clone --branch {{브랜치_이름}} --single-branch {{원격_레파지토리_경로}}`
- 특정 SSH 명령어를 사용하여 이미 존재하는 레파지토리 복제:
`git clone --config core.sshCommand="{{ssh -i private_ssh_key/의/경로}}" {{원격_레파지토리_경로}}`