후배의 원래글
 
 
1) 임시 폴더 생성 후 생성된 폴더로 이동
$ mkdir temp $ cd temp
2) 이동해야할 repository를 임시 폴더 하위에 clone파일을 생성
$ git clone --bare https://github.com/exampleuser/old-repository.git
3) 생성된 clone 폴더로 이동
$ cd old-repository.git
4) 신규 repository에 push
$ git push --mirror https://github.com/exampleuser/new-repository.git
 

+ Recent posts