이 글은 지속적으로 업데이트 됩니다. 

Version
% gh --version
gh version 2.74.2 (2025-06-17)
https://github.com/cli/cli/releases/tag/v2.74.2
Shell
복사
Authentication
웹 페이지로 연결되며 GUI 를 사용할 수 있을때 가장 편리한 인증 방법
gh auth login --web
Shell
복사
Actions
모든 Actions Workflows 를 삭제
gh run list --limit 1000 --json databaseId --jq '.[].databaseId' |xargs -n1 gh run delete
Shell
복사
Releases
모든 릴리즈와 태그까지 함께 삭제
gh release list --json tagName --jq '.[].tagName' |xargs -n1 gh release delete -y --cleanup-tag
Shell
복사