Skip to content

Commit

Permalink
add create section translation
Browse files Browse the repository at this point in the history
  • Loading branch information
mode9 committed Mar 13, 2021
1 parent e3b6365 commit e19b62c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions other-sheets/git-cheat-sheet-ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,30 +102,30 @@ $ git config --global core.editor vi

<hr>

## Create
## 생성

##### Clone an existing repository:
##### 기존 리포지토리 복제:

There are two ways:
2가지 방법이 있습니다:

Via SSH
SSH를 통해

```
$ git clone ssh://[email protected]/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 <directory>
```
Expand Down

0 comments on commit e19b62c

Please sign in to comment.