사용자 도구

사이트 도구


git:github

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
git:github [2020/02/26 09:33]
kwon37xi [SSH Key Pair 생성]
git:github [2021/11/19 10:14] (현재)
kwon37xi [SSH Key Pair 생성]
줄 13: 줄 13:
  
 ===== SSH Key Pair 생성 ===== ===== SSH Key Pair 생성 =====
-<code sh> 
-ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 
-</code> 
-  * [[:upsource|Upsource]]에서도 사용하려면 ''-m pem'' 옵션 추가할 것 
- 
 <code sh> <code sh>
 ssh-keygen -t rsa -b 4096 -m pem -C "your_email@example.com" ssh-keygen -t rsa -b 4096 -m pem -C "your_email@example.com"
 </code> </code>
 +  * [[linux:ssh|Linux SSH]] 참조 
 +  * [[https://github.blog/2021-09-01-improving-git-protocol-security-github/|Improving Git protocol security on GitHub | The GitHub Blog]] 
 +  * [[https://www.youtube.com/watch?v=tl0mZq5yLYw&ab_channel=%EB%B0%95%EC%9E%AC%ED%98%B8|[알도개] GitHub 보안 개선 - YouTube]]
 ===== Github Browser Extensions ===== ===== Github Browser Extensions =====
   * https://github.com/collections/github-browser-extensions   * https://github.com/collections/github-browser-extensions
줄 31: 줄 28:
 ===== Release ===== ===== Release =====
   * [[https://help.github.com/en/articles/creating-releases|Creating releases - GitHub Help]]   * [[https://help.github.com/en/articles/creating-releases|Creating releases - GitHub Help]]
 +  * [[https://gist.github.com/lukechilds/a83e1d7127b78fef38c2914c4ececc3c|Shell - Get latest release from GitHub]]
 ===== Duplicate Repository ===== ===== Duplicate Repository =====
   * Fork 한 리포지토리는 설정 변경에 제약이 있다. 자유롭게 설저을 변경하려면 duplicate 를 해야한다.   * Fork 한 리포지토리는 설정 변경에 제약이 있다. 자유롭게 설저을 변경하려면 duplicate 를 해야한다.
줄 49: 줄 46:
 rm -rf old-repository.git rm -rf old-repository.git
 </code> </code>
 +
 +===== Profile =====
 +  * [[https://zzsza.github.io/development/2020/07/10/make-github-profile-readme/|Github Profile Readme로 프로필 꾸미기 · 어쩐지 오늘은]]
 +  * [[https://github.com/anuraghazra/github-readme-stats|anuraghazra/github-readme-stats: Dynamically generated stats for your github readmes]]
 +
 +
 +===== Github release 마지막 버전 자동 다운로드 =====
 +  * [[https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8|One Liner to Download the Latest Release from Github Repo]]
 +  * 가장 최신버전의 download url 목록
 +<code sh>
 +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 -
 +</code>
 +
 +===== Test Report =====
 +  * [[https://github.com/ScaCap/action-surefire-report|GitHub - ScaCap/action-surefire-report: Reports surefire test results as GitHub Pull Request Check]]
 +
 +
git/github.1582677188.txt.gz · 마지막으로 수정됨: 2020/02/26 09:33 저자 kwon37xi