사용자 도구

사이트 도구


git:github

문서의 이전 판입니다!


Github

SSH Key Pair 생성

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Github Browser Extensions

배포 자동화를 위한 Github 연결

Release

Duplicate Repository

# 먼저 복제본이 들어갈 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
git/github.1565766683.txt.gz · 마지막으로 수정됨: 2019/08/14 16:11 저자 kwon37xi