gh,gh-*: add Korean translation (#14118)

This commit is contained in:
코드싸이
2024-10-11 13:41:00 +09:00
committed by GitHub
parent 3eba37f10a
commit 95f08423dd
29 changed files with 807 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# gh secret
> GitHub 시크릿 관리.
> 더 많은 정보: <https://cli.github.com/manual/gh_secret>.
- 현재 저장소의 시크릿 키 나열:
`gh secret list`
- 특정 조직의 시크릿 키 나열:
`gh secret list --org {{조직}}`
- 특정 저장소의 시크릿 키 나열:
`gh secret list --repo {{소유자}}/{{저장소}}`
- 현재 저장소에 시크릿 설정 (사용자가 값을 입력해야 함):
`gh secret set {{이름}}`
- 파일에서 값을 가져와 현재 저장소에 시크릿 설정:
`gh secret set {{이름}} < {{경로/대상/파일}}`
- 특정 저장소에 대한 조직 시크릿 설정:
`gh secret set {{이름}} --org {{조직}} --repos {{저장소1,저장소2}}`
- 현재 저장소의 시크릿 제거:
`gh secret remove {{이름}}`
- 특정 조직의 시크릿 제거:
`gh secret remove {{이름}} --org {{조직}}`