사용자 도구

사이트 도구


git:github

차이

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

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
git:github [2020/09/08 23:24]
kwon37xi [Release]
git:github [2021/11/19 10:14] (현재)
kwon37xi [SSH Key Pair 생성]
줄 17: 줄 17:
 </code> </code>
   * [[linux:ssh|Linux SSH]] 참조   * [[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
줄 48: 줄 50:
   * [[https://zzsza.github.io/development/2020/07/10/make-github-profile-readme/|Github Profile Readme로 프로필 꾸미기 · 어쩐지 오늘은]]   * [[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]]   * [[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.1599575067.txt.gz · 마지막으로 수정됨: 2020/09/08 23:24 저자 kwon37xi