Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- MySQL
- GIT
- mssql
- urllib
- 리눅스
- python
- swift
- sqlite
- 라즈베리파이
- MS-SQL
- tensorflow
- 유니티
- PyQt
- Excel
- flutter
- PER
- Unity
- 함수
- pandas
- 다이어트
- 맛집
- IOS
- ubuntu
- ASP
- PyQt5
- port
- Linux
- javascript
- 날짜
- node.js
Archives
아미(아름다운미소)
Git : clone 명령어 정리 본문
clone
저장소 복제
현재 경로에 로컬 깃 저장소가 될 디렉토리를 만들고 리모트 저장소의 데이터를 모두 받아온다. 디렉토리명을 따로 명시하지 않으면 리모트 저장소의 이름과 동일하게 생성됩니다.
git clone ~/Documents/workspace/ex/cal/src
git clone file://c:/users/noritersand/noriterGit/localServer localGitRepo
git clone https://noritersand@dev.naver.com/git/lernforscm.git naverGitRepo
git clone git://github.com/schacon/grit.git gitHubRepo
리모트 저장소를 복제하면서 bare repository로 설정
git clone --bare 저장소주소 [디렉토리]
복제 시 데이터 제한하기
git clone --depth 200 ~/Documents/work/ # 마지막 200개의 커밋만 복제합니다.
'랭귀지 > Git' 카테고리의 다른 글
Git : diff 명령어 정리 (0) | 2018.08.05 |
---|---|
Git : config 명령어 정리 (0) | 2018.08.04 |
Git: blame 명령어 정리 (0) | 2018.08.02 |
Git : tag 명령어 정리 (0) | 2018.08.01 |
Git : svn 명령어 정리 (0) | 2018.07.31 |
Comments