GiitHub CLI에서 웨어하우스 목록 가져오기
이 기사는 무엇입니까?
현재 GiitHub CLI에서는 지정된 사용자의 저장소 목록을 가져올 수 없습니다.
목록을 가져오는 방법을 보여 줍니다.
전제 조건
방법
alias에 다음 명령을 추가합니다.
aliases:
repos: |
!gh api --paginate graphql -f owner="$1" -f query='
query($owner: String!, $per_page: Int = 100, $endCursor: String) {
repositoryOwner(login: $owner) {
repositories(first: $per_page, after: $endCursor, ownerAffiliations: OWNER) {
nodes { nameWithOwner }
pageInfo { hasNextPage endCursor }
}
}
}
' | jq -r '.data.repositoryOwner.repositories.nodes[].nameWithOwner' | sort
다음 명령을 통해 지정한 사용자(이 예에서 사용자kumarstack55)의 창고 일람을 표시합니다.gh repos kumarstack55
gh 명령에 미리 포함된 접근 영패를 사용하기 때문에Provate의 창고를 얻을 수 있습니다.참고 자료
Reference
이 문제에 관하여(GiitHub CLI에서 웨어하우스 목록 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/kumarstack55/articles/2020-09-20-gh-repos-list텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)