728x90
1. git clone 이란?
GIT CLONE 은 원격 저장소 ( Repository )로 부터 복제하는 것을 말한다
보통 프로젝트 참여 하거나, Git 저장소를 복사하고 싶을 때 git clone 을 사용한다
2. git clone 방법
[로컬 저장소 복제]
git clone {프로토콜}{프로젝트 주소}.git
3. git clone 프로토콜
git 프로토콜 은 Local, HTTP, SSH, Git 4가지를 지원한다
각 프로토콜에 맞게 명령어를 입력 하면 Clone 이 가능하다
예)
Local : $git clone {프로토콜}{프로젝트 주소}.git
SSH : $git clone ssh://{서버 계정}@{서버 주소}:/{저장소 위치/받을 프로젝트 이름}.git
HTTP : $git clone https://{url/받을 프로젝트 이름}.git
4. 로컬에 클론 해보기
환경 : Windows , Fokr 툴 사용, HTTP 로 복사
[4-1]
- [File] > [Clone] 클릭
[4-2]
- Repository Url : git http url 주소 입력
- Parent Folder : 로컬 저장소 입력
- Name : Repository 의 로컬 Name 입력
- 내용 입력후 [Clone] 클릭
[4-3] Clone 완료
728x90
'업무 > IT-Tip' 카테고리의 다른 글
[GIT] error: Pulling is not possible because you have unmerged files. (0) | 2023.09.05 |
---|---|
[GIT] error:failed to push some refs to 에러 해결 (0) | 2023.09.05 |
컬럼명 , 변수명 짓기 사이트 (0) | 2023.07.05 |
[GIT] Commit git author identity unknown 오류 해결 (0) | 2023.07.04 |
[ERMaster] 이클립스(EClipse) error An error occurred while collecting items to be installedsession context (0) | 2023.06.21 |