일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바
- 리눅스
- Windows
- 파이썬
- 데이터베이스
- postgres
- Linux
- java
- node
- 설치
- 아틀라시안
- python
- 자바스크립트
- 스크립트
- ubuntu
- 윈도우
- PostgreSQL
- 3.0
- Atlassian
- JS
- 노드
- script
- DATABASE
- DB
- install
- 설정
- 우분투
- javascript
- 하모니카
- hamonikr
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
branch tag 를 모두 포함한 git 저장소 복제하기 본문
반응형
> git clone --mirror {org_repository}
Cloning into bare repository 'org_repository'...
remote: Enumerating objects: 4201, done.
remote: Counting objects: 100% (783/783), done.
remote: Compressing objects: 100% (392/392), done.
remote: Total 4201 (delta 381), reused 619 (delta 367), pack-reused 3418Receiving objects: 99% (4159/4201), 25.51 MiB | 10.19 MiB/s
Receiving objects: 100% (4201/4201), 27.17 MiB | 10.21 MiB/s, done.
Resolving deltas: 100% (2497/2497), done.
> cd org_repository
저장소 clone 후 해당 폴더로 이동한다.
> git remote -v
origin https://github.com/{org_repository}.git (fetch)
origin https://github.com/{org_repository}.git (push)
복제할 대상 저장소를 추가하기 전 상태를 확인한다.
> git remote set-url --push origin {new_repository}
> git remote -v
origin https://github.com/{org_repository}.git (fetch)
origin https://github.com/{new_repository}.git (push)
복제할 대상 저장소를 추가한 후 확인한다.
> git push --mirror {new_repository}
복제할 대상 저장소로 push 한다.
반응형
Comments