From e19b62c366d7497434776cfd9983d5d593f13015 Mon Sep 17 00:00:00 2001 From: mode9 Date: Sun, 14 Mar 2021 00:29:05 +0900 Subject: [PATCH] add create section translation --- other-sheets/git-cheat-sheet-ko.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/other-sheets/git-cheat-sheet-ko.md b/other-sheets/git-cheat-sheet-ko.md index 50fd4d1..aabfef2 100644 --- a/other-sheets/git-cheat-sheet-ko.md +++ b/other-sheets/git-cheat-sheet-ko.md @@ -102,30 +102,30 @@ $ git config --global core.editor vi
-## Create +## 생성 -##### Clone an existing repository: +##### 기존 리포지토리 복제: -There are two ways: +2가지 방법이 있습니다: -Via SSH +SSH를 통해 ``` $ git clone ssh://user@domain.com/repo.git ``` -Via HTTP +HTTP를 통해 ``` $ git clone http://domain.com/user/repo.git ``` -##### Create a new local repository in the current directory: +##### 현재 경로에 새로운 로컬 리포지토리 생성: ``` $ git init ``` -##### Create a new local repository in a specific directory: +##### 특정 경로에 새로운 로컬 리포지토리 생성: ``` $ git init ```