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
- javascript case
- vue.js
- JPA
- HandlerMethodArgumentResolver
- Spring Cloud Netflix
- ksqldb
- 친절한 SQL 튜닝
- 리눅스
- intellij 즐겨찾기
- 리팩토링 2판
- 자바 ORM 표준 JPA 프로그래밍
- #docker compose
- IntelliJ
- findTopBy
- ksql
- 원격 브랜 삭제
- git
- @TransactionalEventListener
- intellij 핵심 단축키
- intellij favorites
- @Transactional Propagation
- Stream
- CompletableFuture
- multipart테스트
- Linux
- 마이크로 서비스
- java
- 백명석님
- aws
- 자바 ORM 표준 JPA 프로그래밍 정리
Archives
- Today
- Total
시그마 삽질==six 시그마
git repository 복사하기 본문
1. Open Terminal.
2. Create a bare clone of the repository.
$ git clone --bare https://github.com/exampleuser/old-repository.git
3. Mirror-push to the new repository.
$ cd old-repository.git
Before mirroring, you have to make a new-repository. in your git
$ git push --mirror https://github.com/exampleuser/new-repository.git
4. Remove the temporary local repository you created earlier.
$ cd ..
$ rm -rf old-repository.git
'프로그래밍 > GIT' 카테고리의 다른 글
git status , git diff (0) | 2020.08.20 |
---|---|
git stash (임시저장) (0) | 2020.08.20 |
git 히스토리 초기화 (0) | 2020.08.10 |
git branch/checkout (0) | 2020.08.10 |
현재 브랜치를 마스터로 만들기 (0) | 2020.03.06 |
Comments