시그마 삽질==six 시그마

git repository 복사하기 본문

프로그래밍/GIT

git repository 복사하기

Ethan Matthew Hunt 2020. 8. 12. 21:15

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