-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
``` | ||
|