사용자 도구

사이트 도구


git:github

Github

SSH Key Pair 생성

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

Profile

Github release 마지막 버전 자동 다운로드

curl -sL https://api.github.com/repos/<USER>/<REPO>/releases/latest | jq -r '.assets[].browser_download_url'
 
# 이제 그 중에서 linux amd64 를 찾아서 다운로드
curl -sL https://api.github.com/repos/<USER>/<REPO>/releases/latest | jq -r '.assets[].browser_download_url' | grep -e '.*-linux_amd64.tar.gz' | wget -i -

Test Report

git/github.txt · 마지막으로 수정됨: 2021/11/19 10:14 저자 kwon37xi