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

29
pages.ko/common/git.md Normal file
View File

@@ -0,0 +1,29 @@
# git
> 분산 버전 관리 시스템.
> `commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다. `tldr git subcommand`를 통해 확인할 수 있습니다.
> 더 많은 정보: <https://git-scm.com/>.
- Git 버전 확인:
`git --version`
- 일반 도움말 출력:
`git --help`
- 하위 명령어 도움말 출력 (`clone`, `add`, `push`, `log`, 등등):
`git help {{하위_명렁어}}`
- 하위 명령어 실행:
`git {{하위_명령어}}`
- 특정 레파지토리 위치에서 Git 하위 명령어 실행:
`git -C {{특정/레파지토리/경로}} {{하위_명령어}}`
- 주어진 설정으로 Git 하위 명령어 실행
`git -c '{{설정.키}}={{설정.값}}' {{하위_명령어}}`