tldr/pages.ko/common/gh-api.md
2024-10-11 13:41:00 +09:00

974 B

gh api

GitHub API에 인증된 HTTP 요청을 보내고 응답을 출력. 더 많은 정보: https://cli.github.com/manual/gh_api.

  • 현재 저장소의 릴리스를 JSON 형식으로 표시:

gh api repos/:owner/:repo/releases

  • 특정 이슈에 대해 반응 생성:

gh api --header {{Accept:application/vnd.github.squirrel-girl-preview+json}} --raw-field '{{content=+1}}' {{repos/:owner/:repo/issues/123/reactions}}

  • GraphQL 쿼리 결과를 JSON 형식으로 표시:

gh api graphql --field {{name=':repo'}} --raw-field '{{query}}'

  • 사용자 지정 HTTP 메서드를 사용하여 요청 전송:

gh api --method {{POST}} {{endpoint}}

  • HTTP 응답 헤더를 출력에 포함:

gh api --include {{endpoint}}

  • 응답 본문을 출력하지 않음:

gh api --silent {{endpoint}}

  • 특정 GitHub Enterprise 서버에 요청 전송:

gh api --hostname {{github.example.com}} {{endpoint}}

  • 하위 명령 도움말 표시:

gh api --help