mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 16:42:08 +02:00

* git-a*: add and update Korean translation * git-b*: add and update Korean translation * git-*: add and update Korean translation * Update git-standup.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
17 lines
646 B
Markdown
17 lines
646 B
Markdown
# git verify-commit
|
|
|
|
> 커밋의 GPG 검증 확인.
|
|
> 커밋이 검증되지 않으면, 지정된 옵션에 상관없이 아무것도 출력되지 않습니다.
|
|
> 더 많은 정보: <https://git-scm.com/docs/git-verify-commit>.
|
|
|
|
- 커밋에 대한 GPG 서명 확인:
|
|
|
|
`git verify-commit {{커밋_해시1 선택_커밋_해시2 ...}}`
|
|
|
|
- 커밋에 대한 GPG 서명을 확인하고 각 커밋의 세부 정보를 표시:
|
|
|
|
`git verify-commit {{커밋_해시1 선택_커밋_해시2 ...}} --verbose`
|
|
|
|
- 커밋에 대한 GPG 서명을 확인하고 원시 세부 정보를 출력:
|
|
|
|
`git verify-commit {{커밋_해시1 선택_커밋_해시2 ...}} --raw`
|