반응형
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
- OpenFeign
- Java 1.8
- yum install java
- no sources given
- property or field 'jobparameters' cannot be found on object of type
- JUnit
- java 11
- java
- 스프링부트테스트
- log error
- mac os git error
- springboot
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- Medium
- No tests found for given includes
- java 버전 변경
- parse
- aws
- LeetCode
- java 여러개 버전
- java 1.8 11
- java version
- querydsl no sources given
- springbatch error
- easy
- maybe not public or not valid?
- el1008e
- error
- springboottest
- AWS CLI
Archives
- Today
- Total
쩨이엠 개발 블로그
[ git ] repository 저장소 옮기기 (+ 커밋까지) 본문
728x90
반응형
레파지토리를 소스만 복사해서 옮기는건 쉽지만 커밋을 보고싶다
한 방에 init 하기 싫다
하면 쓸 수 있는 옵션이 있었다
그래서 옮겨보기로 한다
1. 옮길 레파지토리 준비
$ sudo git clone --mirror {Repository.git}
Repository.git에는 git clone 주소를 넣어준다
2. git 이름 바꿔주기
git clone을 하고 나면 xxx.git 이라는 디렉토리가 나타나는데 이름을 .git으로 바꿔준다
$ mv Repository.git .git
3. 새 레파지토리 연결
새 레파지토리의 git 주소를 연결한다
$ git remote set-url origin {NewRepository.git}
4. push 해주면 끝!
$ git push --mirror
728x90
반응형
'개발 > ETC' 카테고리의 다른 글
[linux] Binary file * matches 및 Grep option 사용법 (0) | 2022.04.05 |
---|---|
[MySQL] 파티션 추가 / 재구성 (0) | 2022.01.17 |
[ Homebrew ] 권한 오류 Permission denied @ apply2files (0) | 2021.03.11 |
[ gradle ] gradle lombok cannot find symbol (0) | 2021.01.18 |
Kafka 설치 및 실행 (0) | 2021.01.07 |
Comments