문서의 이전 판입니다!
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
-m pem
옵션 추가할 것ssh-keygen -t rsa -b 4096 -m pem -C "your_email@example.com"
# 먼저 복제본이 들어갈 github repository를 비어있는 상태로 만든다. # 복제할 리포지토리를 --bare로 clone 한다. git clone --bare https://github.com/exampleuser/old-repository.git # 신규 리포지토리에 --mirror로 push한다. cd old-repository.git git push --mirror https://github.com/exampleuser/new-repository.git # 기존 리포지토리 clone 한 것을 삭제하고 신규 리포지토리를 받아서 작업한다. cd .. rm -rf old-repository.git