1. repository 생성
github에 들어가서, 복제해서 붙여넣을 repository를 미리 생성해둔다.
2. mirror 옵션을 이용한 clone
# repository 전체 clone
$ git clone --mirror { git repository 주소 }
# 특정 브랜치만 가져온다면 $ git clone -b { 브랜치명 } 실행
$ --single-branch --mirror { git repository 주소 }
2. repository명.git 을 .git으로 이름 변경
# repository명.git 파일의 이름을 .git으로 변경
$ mv repository명.git .git
3. 새로운 repository와 연결
# .git으로 변경한 디렉토리에서 아래 명령을 실행
$ git remote set-url origin { 새로운 repository 주소 }
4. 새 repository에 push
# .git으로 변경한 디렉토리에서 아래 명령을 실행
# 아래의 명령을 실행하게 되면 새로운 repository로 push 된다.
$ git push --mirror
5. 이후 repository를 clone해온 후 마음대로 수정한다.
$ git clone {새로운 repository명}
'👩💻 Web Programming > GitOps' 카테고리의 다른 글
Git이란? (0) | 2023.07.10 |
---|---|
[GIT] Github에 파일 업로드하기 (0) | 2022.06.26 |
[GIT] git Add, Commit, Push 취소하기 (0) | 2021.04.02 |
[GITHUB] GitHub Profile 꾸미기 (0) | 2021.04.02 |